Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
441 changes: 441 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/Amount.php

Large diffs are not rendered by default.

596 changes: 596 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/AmountAdjustment.php

Large diffs are not rendered by default.

466 changes: 466 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/Authentication.php

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

528 changes: 528 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/BalanceMutation.php

Large diffs are not rendered by default.

624 changes: 624 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/BankAccountDetails.php

Large diffs are not rendered by default.

779 changes: 779 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/BulkAddress.php

Large diffs are not rendered by default.

854 changes: 854 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/Card.php

Large diffs are not rendered by default.

810 changes: 810 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/CardConfiguration.php

Large diffs are not rendered by default.

593 changes: 593 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/DeliveryAddress.php

Large diffs are not rendered by default.

565 changes: 565 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/DeliveryContact.php

Large diffs are not rendered by default.

435 changes: 435 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/Expiry.php

Large diffs are not rendered by default.

Large diffs are not rendered by default.

528 changes: 528 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/MerchantData.php

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions src/Adyen/Model/RelayedAuthorizationWebhooks/ModelInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<?php

/**
* Authorization webhooks
*
* The version of the OpenAPI document: 4
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.0.1
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/


namespace Adyen\Model\RelayedAuthorizationWebhooks;

interface ModelInterface
{
/**
* The original name of the model.
*
* @return string
*/
public function getModelName();

/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPITypes();

/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPIFormats();

/**
* Array of attributes where the key is the local name, and the value is the original name
*
* @return array
*/
public static function attributeMap();

/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @return array
*/
public static function setters();

/**
* Array of attributes to getter functions (for serialization of requests)
*
* @return array
*/
public static function getters();

/**
* Show all the invalid properties with reasons.
*
* @return array
*/
public function listInvalidProperties();

/**
* Validate all the properties in the model
* return true if all passed
*
* @return bool
*/
public function valid();

/**
* Checks if a property is nullable
*
* @param string $property
* @return bool
*/
public static function isNullable(string $property): bool;

/**
* Checks if a nullable property is set to null.
*
* @param string $property
* @return bool
*/
public function isNullableSetToNull(string $property): bool;
}
Loading