Skip to content

Commit b837a92

Browse files
[relayedauthorizationwebhooks] Automated update from Adyen/adyen-openapi@d24c598
1 parent 543a990 commit b837a92

4 files changed

Lines changed: 101 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"service": "relayedauthorizationwebhooks",
3+
"project": "php",
4+
"generatedAt": "2026-04-30T10:03:30Z",
5+
"openapiCommitSha": "d24c59897bc66d049db5fbc0f4823efe59964e67",
6+
"automationCommitSha": "4ad0c0c7e87bc0e5994a9a3350a991d0691350bb",
7+
"libraryCommitSha": "543a990aa9c3dc0c5899292b33c6762d153edca7"
8+
}

src/Adyen/Model/RelayedAuthorizationWebhooks/CardConfiguration.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ class CardConfiguration implements ModelInterface, ArrayAccess, \JsonSerializabl
5454
'languages' => 'string[]',
5555
'logoImageId' => 'string',
5656
'pinMailer' => 'string',
57+
'printLine' => 'string',
5758
'shipmentMethod' => 'string'
5859
];
5960

@@ -78,6 +79,7 @@ class CardConfiguration implements ModelInterface, ArrayAccess, \JsonSerializabl
7879
'languages' => null,
7980
'logoImageId' => null,
8081
'pinMailer' => null,
82+
'printLine' => null,
8183
'shipmentMethod' => null
8284
];
8385

@@ -100,6 +102,7 @@ class CardConfiguration implements ModelInterface, ArrayAccess, \JsonSerializabl
100102
'languages' => false,
101103
'logoImageId' => false,
102104
'pinMailer' => false,
105+
'printLine' => false,
103106
'shipmentMethod' => false
104107
];
105108

@@ -202,6 +205,7 @@ public function isNullableSetToNull(string $property): bool
202205
'languages' => 'languages',
203206
'logoImageId' => 'logoImageId',
204207
'pinMailer' => 'pinMailer',
208+
'printLine' => 'printLine',
205209
'shipmentMethod' => 'shipmentMethod'
206210
];
207211

@@ -224,6 +228,7 @@ public function isNullableSetToNull(string $property): bool
224228
'languages' => 'setLanguages',
225229
'logoImageId' => 'setLogoImageId',
226230
'pinMailer' => 'setPinMailer',
231+
'printLine' => 'setPrintLine',
227232
'shipmentMethod' => 'setShipmentMethod'
228233
];
229234

@@ -246,6 +251,7 @@ public function isNullableSetToNull(string $property): bool
246251
'languages' => 'getLanguages',
247252
'logoImageId' => 'getLogoImageId',
248253
'pinMailer' => 'getPinMailer',
254+
'printLine' => 'getPrintLine',
249255
'shipmentMethod' => 'getShipmentMethod'
250256
];
251257

@@ -319,6 +325,7 @@ public function __construct(?array $data = null)
319325
$this->setIfExists('languages', $data ?? [], null);
320326
$this->setIfExists('logoImageId', $data ?? [], null);
321327
$this->setIfExists('pinMailer', $data ?? [], null);
328+
$this->setIfExists('printLine', $data ?? [], null);
322329
$this->setIfExists('shipmentMethod', $data ?? [], null);
323330
}
324331

@@ -679,6 +686,30 @@ public function setPinMailer($pinMailer)
679686
return $this;
680687
}
681688

689+
/**
690+
* Gets printLine
691+
*
692+
* @return string|null
693+
*/
694+
public function getPrintLine()
695+
{
696+
return $this->container['printLine'];
697+
}
698+
699+
/**
700+
* Sets printLine
701+
*
702+
* @param string|null $printLine Print Line. Text printed on the physical card below the cardholder name. You provide the value, which can be up to 26 characters.
703+
*
704+
* @return self
705+
*/
706+
public function setPrintLine($printLine)
707+
{
708+
$this->container['printLine'] = $printLine;
709+
710+
return $this;
711+
}
712+
682713
/**
683714
* Gets shipmentMethod
684715
*

src/Adyen/Model/RelayedAuthorizationWebhooks/IbanAccountIdentification.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class IbanAccountIdentification implements ModelInterface, ArrayAccess, \JsonSer
4141
* @var string[]
4242
*/
4343
protected static $openAPITypes = [
44+
'bic' => 'string',
4445
'iban' => 'string',
4546
'type' => 'string'
4647
];
@@ -53,6 +54,7 @@ class IbanAccountIdentification implements ModelInterface, ArrayAccess, \JsonSer
5354
* @psalm-var array<string, string|null>
5455
*/
5556
protected static $openAPIFormats = [
57+
'bic' => null,
5658
'iban' => null,
5759
'type' => null
5860
];
@@ -63,6 +65,7 @@ class IbanAccountIdentification implements ModelInterface, ArrayAccess, \JsonSer
6365
* @var boolean[]
6466
*/
6567
protected static $openAPINullables = [
68+
'bic' => false,
6669
'iban' => false,
6770
'type' => false
6871
];
@@ -153,6 +156,7 @@ public function isNullableSetToNull(string $property): bool
153156
* @var string[]
154157
*/
155158
protected static $attributeMap = [
159+
'bic' => 'bic',
156160
'iban' => 'iban',
157161
'type' => 'type'
158162
];
@@ -163,6 +167,7 @@ public function isNullableSetToNull(string $property): bool
163167
* @var string[]
164168
*/
165169
protected static $setters = [
170+
'bic' => 'setBic',
166171
'iban' => 'setIban',
167172
'type' => 'setType'
168173
];
@@ -173,6 +178,7 @@ public function isNullableSetToNull(string $property): bool
173178
* @var string[]
174179
*/
175180
protected static $getters = [
181+
'bic' => 'getBic',
176182
'iban' => 'getIban',
177183
'type' => 'getType'
178184
];
@@ -246,6 +252,7 @@ public function getTypeAllowableValues()
246252
*/
247253
public function __construct(?array $data = null)
248254
{
255+
$this->setIfExists('bic', $data ?? [], null);
249256
$this->setIfExists('iban', $data ?? [], null);
250257
$this->setIfExists('type', $data ?? [], null);
251258
}
@@ -307,6 +314,30 @@ public function valid()
307314
}
308315

309316

317+
/**
318+
* Gets bic
319+
*
320+
* @return string|null
321+
*/
322+
public function getBic()
323+
{
324+
return $this->container['bic'];
325+
}
326+
327+
/**
328+
* Sets bic
329+
*
330+
* @param string|null $bic The bank's 8- or 11-character BIC or SWIFT code.
331+
*
332+
* @return self
333+
*/
334+
public function setBic($bic)
335+
{
336+
$this->container['bic'] = $bic;
337+
338+
return $this;
339+
}
340+
310341
/**
311342
* Gets iban
312343
*

src/Adyen/Model/RelayedAuthorizationWebhooks/PaymentInstrumentAdditionalBankAccountIdentificationsInner.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class PaymentInstrumentAdditionalBankAccountIdentificationsInner implements Mode
4141
* @var string[]
4242
*/
4343
protected static $openAPITypes = [
44+
'bic' => 'string',
4445
'iban' => 'string',
4546
'type' => 'string'
4647
];
@@ -53,6 +54,7 @@ class PaymentInstrumentAdditionalBankAccountIdentificationsInner implements Mode
5354
* @psalm-var array<string, string|null>
5455
*/
5556
protected static $openAPIFormats = [
57+
'bic' => null,
5658
'iban' => null,
5759
'type' => null
5860
];
@@ -63,6 +65,7 @@ class PaymentInstrumentAdditionalBankAccountIdentificationsInner implements Mode
6365
* @var boolean[]
6466
*/
6567
protected static $openAPINullables = [
68+
'bic' => false,
6669
'iban' => false,
6770
'type' => false
6871
];
@@ -153,6 +156,7 @@ public function isNullableSetToNull(string $property): bool
153156
* @var string[]
154157
*/
155158
protected static $attributeMap = [
159+
'bic' => 'bic',
156160
'iban' => 'iban',
157161
'type' => 'type'
158162
];
@@ -163,6 +167,7 @@ public function isNullableSetToNull(string $property): bool
163167
* @var string[]
164168
*/
165169
protected static $setters = [
170+
'bic' => 'setBic',
166171
'iban' => 'setIban',
167172
'type' => 'setType'
168173
];
@@ -173,6 +178,7 @@ public function isNullableSetToNull(string $property): bool
173178
* @var string[]
174179
*/
175180
protected static $getters = [
181+
'bic' => 'getBic',
176182
'iban' => 'getIban',
177183
'type' => 'getType'
178184
];
@@ -233,6 +239,7 @@ public function getModelName()
233239
*/
234240
public function __construct(?array $data = null)
235241
{
242+
$this->setIfExists('bic', $data ?? [], null);
236243
$this->setIfExists('iban', $data ?? [], null);
237244
$this->setIfExists('type', $data ?? [], null);
238245
}
@@ -286,6 +293,30 @@ public function valid()
286293
}
287294

288295

296+
/**
297+
* Gets bic
298+
*
299+
* @return string|null
300+
*/
301+
public function getBic()
302+
{
303+
return $this->container['bic'];
304+
}
305+
306+
/**
307+
* Sets bic
308+
*
309+
* @param string|null $bic The bank's 8- or 11-character BIC or SWIFT code.
310+
*
311+
* @return self
312+
*/
313+
public function setBic($bic)
314+
{
315+
$this->container['bic'] = $bic;
316+
317+
return $this;
318+
}
319+
289320
/**
290321
* Gets iban
291322
*

0 commit comments

Comments
 (0)