105 lines
2.0 KiB
PHP
105 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* ModelInterface
|
|
*
|
|
* PHP version 7.4
|
|
*
|
|
* @category Class
|
|
* @package PaymentRequest
|
|
*/
|
|
|
|
/**
|
|
* Payment Requests
|
|
*
|
|
* The version of the OpenAPI document: 1.59.0
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated.
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
namespace Xendit\Model;
|
|
|
|
/**
|
|
* Interface abstracting model access.
|
|
*
|
|
* @package PaymentRequest
|
|
* @author OpenAPI Generator team
|
|
*/
|
|
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;
|
|
}
|