|
| 1 | +<?php |
| 2 | + |
| 3 | +/** |
| 4 | + * Tokenization webhooks |
| 5 | + * |
| 6 | + * The version of the OpenAPI document: 1 |
| 7 | + * Generated by: https://openapi-generator.tech |
| 8 | + * OpenAPI Generator version: 6.0.1 |
| 9 | + * |
| 10 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 11 | + * https://openapi-generator.tech |
| 12 | + * Do not edit the class manually. |
| 13 | + */ |
| 14 | + |
| 15 | + |
| 16 | +namespace Adyen\Model\TokenizationWebhooks; |
| 17 | + |
| 18 | +interface ModelInterface |
| 19 | +{ |
| 20 | + /** |
| 21 | + * The original name of the model. |
| 22 | + * |
| 23 | + * @return string |
| 24 | + */ |
| 25 | + public function getModelName(); |
| 26 | + |
| 27 | + /** |
| 28 | + * Array of property to type mappings. Used for (de)serialization |
| 29 | + * |
| 30 | + * @return array |
| 31 | + */ |
| 32 | + public static function openAPITypes(); |
| 33 | + |
| 34 | + /** |
| 35 | + * Array of property to format mappings. Used for (de)serialization |
| 36 | + * |
| 37 | + * @return array |
| 38 | + */ |
| 39 | + public static function openAPIFormats(); |
| 40 | + |
| 41 | + /** |
| 42 | + * Array of attributes where the key is the local name, and the value is the original name |
| 43 | + * |
| 44 | + * @return array |
| 45 | + */ |
| 46 | + public static function attributeMap(); |
| 47 | + |
| 48 | + /** |
| 49 | + * Array of attributes to setter functions (for deserialization of responses) |
| 50 | + * |
| 51 | + * @return array |
| 52 | + */ |
| 53 | + public static function setters(); |
| 54 | + |
| 55 | + /** |
| 56 | + * Array of attributes to getter functions (for serialization of requests) |
| 57 | + * |
| 58 | + * @return array |
| 59 | + */ |
| 60 | + public static function getters(); |
| 61 | + |
| 62 | + /** |
| 63 | + * Show all the invalid properties with reasons. |
| 64 | + * |
| 65 | + * @return array |
| 66 | + */ |
| 67 | + public function listInvalidProperties(); |
| 68 | + |
| 69 | + /** |
| 70 | + * Validate all the properties in the model |
| 71 | + * return true if all passed |
| 72 | + * |
| 73 | + * @return bool |
| 74 | + */ |
| 75 | + public function valid(); |
| 76 | + |
| 77 | + /** |
| 78 | + * Checks if a property is nullable |
| 79 | + * |
| 80 | + * @param string $property |
| 81 | + * @return bool |
| 82 | + */ |
| 83 | + public static function isNullable(string $property): bool; |
| 84 | + |
| 85 | + /** |
| 86 | + * Checks if a nullable property is set to null. |
| 87 | + * |
| 88 | + * @param string $property |
| 89 | + * @return bool |
| 90 | + */ |
| 91 | + public function isNullableSetToNull(string $property): bool; |
| 92 | +} |
0 commit comments