diff --git a/src/Auth/Api/AuthApi.php b/src/Auth/Api/AuthApi.php index 4b3bda2..44297c2 100644 --- a/src/Auth/Api/AuthApi.php +++ b/src/Auth/Api/AuthApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class AuthApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Auth/Api/SpamExpertApi.php b/src/Auth/Api/SpamExpertApi.php index 35c9ace..17e77fc 100644 --- a/src/Auth/Api/SpamExpertApi.php +++ b/src/Auth/Api/SpamExpertApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class SpamExpertApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Auth/AuthModule.php b/src/Auth/AuthModule.php index fbfcb86..c2b35eb 100644 --- a/src/Auth/AuthModule.php +++ b/src/Auth/AuthModule.php @@ -11,7 +11,7 @@ use Openprovider\Api\Rest\Client\Auth\Api\AuthApi; use Openprovider\Api\Rest\Client\Auth\Api\SpamExpertApi; -class AuthModule +class AuthModule { /** @var AuthApi */ protected $AuthApi; @@ -26,9 +26,9 @@ class AuthModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->AuthApi = new AuthApi($client, $config, $selector, $host_index); @@ -39,7 +39,7 @@ public function __construct( * Gets AuthApi api. * @return AuthApi */ - public function getAuthApi() + public function getAuthApi() { return $this->AuthApi; } @@ -48,7 +48,7 @@ public function getAuthApi() * Gets SpamExpertApi api. * @return SpamExpertApi */ - public function getSpamExpertApi() + public function getSpamExpertApi() { return $this->SpamExpertApi; } diff --git a/src/Auth/Model/AuthLoginRequest.php b/src/Auth/Model/AuthLoginRequest.php index ea395a3..f9ab924 100644 --- a/src/Auth/Model/AuthLoginRequest.php +++ b/src/Auth/Model/AuthLoginRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ip'] = isset($data['ip']) ? $data['ip'] : null; $this->container['password'] = isset($data['password']) ? $data['password'] : null; diff --git a/src/Auth/Model/AuthLoginResponse.php b/src/Auth/Model/AuthLoginResponse.php index 499df88..e411ef9 100644 --- a/src/Auth/Model/AuthLoginResponse.php +++ b/src/Auth/Model/AuthLoginResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Auth/Model/AuthLoginResponseData.php b/src/Auth/Model/AuthLoginResponseData.php index ca42cc5..6164c34 100644 --- a/src/Auth/Model/AuthLoginResponseData.php +++ b/src/Auth/Model/AuthLoginResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['reseller_id'] = isset($data['reseller_id']) ? $data['reseller_id'] : null; $this->container['token'] = isset($data['token']) ? $data['token'] : null; diff --git a/src/Auth/Model/ErrorError.php b/src/Auth/Model/ErrorError.php index fbc4817..ab477e5 100644 --- a/src/Auth/Model/ErrorError.php +++ b/src/Auth/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Auth/Model/ErrorWarning.php b/src/Auth/Model/ErrorWarning.php index 3dba61c..d09a370 100644 --- a/src/Auth/Model/ErrorWarning.php +++ b/src/Auth/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Auth/Model/SpamExpertGenerateLoginURLRequest.php b/src/Auth/Model/SpamExpertGenerateLoginURLRequest.php index fac6d8e..f8a4e3a 100644 --- a/src/Auth/Model/SpamExpertGenerateLoginURLRequest.php +++ b/src/Auth/Model/SpamExpertGenerateLoginURLRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bundle'] = isset($data['bundle']) ? $data['bundle'] : null; $this->container['domain_or_email'] = isset($data['domain_or_email']) ? $data['domain_or_email'] : null; diff --git a/src/Auth/Model/SpamExpertGenerateLoginURLResponse.php b/src/Auth/Model/SpamExpertGenerateLoginURLResponse.php index a510e1c..badbd64 100644 --- a/src/Auth/Model/SpamExpertGenerateLoginURLResponse.php +++ b/src/Auth/Model/SpamExpertGenerateLoginURLResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Auth/Model/SpamExpertGenerateLoginURLResponseData.php b/src/Auth/Model/SpamExpertGenerateLoginURLResponseData.php index 534fbd9..9f9843d 100644 --- a/src/Auth/Model/SpamExpertGenerateLoginURLResponseData.php +++ b/src/Auth/Model/SpamExpertGenerateLoginURLResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['url'] = isset($data['url']) ? $data['url'] : null; } diff --git a/src/Billing/Api/InvoiceServiceApi.php b/src/Billing/Api/InvoiceServiceApi.php index 486cf64..92680c7 100644 --- a/src/Billing/Api/InvoiceServiceApi.php +++ b/src/Billing/Api/InvoiceServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class InvoiceServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Billing/Api/PaymentApi.php b/src/Billing/Api/PaymentApi.php index 37c00d6..4443c4a 100644 --- a/src/Billing/Api/PaymentApi.php +++ b/src/Billing/Api/PaymentApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class PaymentApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Billing/Api/TransactionApi.php b/src/Billing/Api/TransactionApi.php index d5b77a6..88a95d3 100644 --- a/src/Billing/Api/TransactionApi.php +++ b/src/Billing/Api/TransactionApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class TransactionApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Billing/BillingModule.php b/src/Billing/BillingModule.php index 3b13706..15b23c9 100644 --- a/src/Billing/BillingModule.php +++ b/src/Billing/BillingModule.php @@ -12,7 +12,7 @@ use Openprovider\Api\Rest\Client\Billing\Api\PaymentApi; use Openprovider\Api\Rest\Client\Billing\Api\TransactionApi; -class BillingModule +class BillingModule { /** @var InvoiceServiceApi */ protected $InvoiceServiceApi; @@ -30,9 +30,9 @@ class BillingModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->InvoiceServiceApi = new InvoiceServiceApi($client, $config, $selector, $host_index); @@ -44,7 +44,7 @@ public function __construct( * Gets InvoiceServiceApi api. * @return InvoiceServiceApi */ - public function getInvoiceServiceApi() + public function getInvoiceServiceApi() { return $this->InvoiceServiceApi; } @@ -53,7 +53,7 @@ public function getInvoiceServiceApi() * Gets PaymentApi api. * @return PaymentApi */ - public function getPaymentApi() + public function getPaymentApi() { return $this->PaymentApi; } @@ -62,7 +62,7 @@ public function getPaymentApi() * Gets TransactionApi api. * @return TransactionApi */ - public function getTransactionApi() + public function getTransactionApi() { return $this->TransactionApi; } diff --git a/src/Billing/Model/ErrorError.php b/src/Billing/Model/ErrorError.php index 27145eb..c2b13ee 100644 --- a/src/Billing/Model/ErrorError.php +++ b/src/Billing/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Billing/Model/ErrorWarning.php b/src/Billing/Model/ErrorWarning.php index e102ac3..f0d6bda 100644 --- a/src/Billing/Model/ErrorWarning.php +++ b/src/Billing/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Billing/Model/InvoiceInvoice.php b/src/Billing/Model/InvoiceInvoice.php index fe59f24..cbba571 100644 --- a/src/Billing/Model/InvoiceInvoice.php +++ b/src/Billing/Model/InvoiceInvoice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['attachment_url'] = isset($data['attachment_url']) ? $data['attachment_url'] : null; diff --git a/src/Billing/Model/InvoiceListInvoicesResponse.php b/src/Billing/Model/InvoiceListInvoicesResponse.php index d6808e5..6151da8 100644 --- a/src/Billing/Model/InvoiceListInvoicesResponse.php +++ b/src/Billing/Model/InvoiceListInvoicesResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Billing/Model/InvoiceListInvoicesResponseData.php b/src/Billing/Model/InvoiceListInvoicesResponseData.php index b5c1a17..3f4d4d2 100644 --- a/src/Billing/Model/InvoiceListInvoicesResponseData.php +++ b/src/Billing/Model/InvoiceListInvoicesResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Billing/Model/InvoicePrice.php b/src/Billing/Model/InvoicePrice.php index a729f7d..5fd24cd 100644 --- a/src/Billing/Model/InvoicePrice.php +++ b/src/Billing/Model/InvoicePrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Billing/Model/InvoicePrices.php b/src/Billing/Model/InvoicePrices.php index eb2b07c..6ee096c 100644 --- a/src/Billing/Model/InvoicePrices.php +++ b/src/Billing/Model/InvoicePrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Billing/Model/PaymentListPaymentsResponse.php b/src/Billing/Model/PaymentListPaymentsResponse.php index b657540..e7511d3 100644 --- a/src/Billing/Model/PaymentListPaymentsResponse.php +++ b/src/Billing/Model/PaymentListPaymentsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Billing/Model/PaymentListPaymentsResponseData.php b/src/Billing/Model/PaymentListPaymentsResponseData.php index 48c8f7a..fd64bfa 100644 --- a/src/Billing/Model/PaymentListPaymentsResponseData.php +++ b/src/Billing/Model/PaymentListPaymentsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Billing/Model/PaymentListPaymentsResponseDataResults.php b/src/Billing/Model/PaymentListPaymentsResponseDataResults.php index ef01c15..f74f9af 100644 --- a/src/Billing/Model/PaymentListPaymentsResponseDataResults.php +++ b/src/Billing/Model/PaymentListPaymentsResponseDataResults.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -203,9 +203,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -220,7 +220,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['amount'] = isset($data['amount']) ? $data['amount'] : null; $this->container['confirmation_date'] = isset($data['confirmation_date']) ? $data['confirmation_date'] : null; diff --git a/src/Billing/Model/PaymentPrice.php b/src/Billing/Model/PaymentPrice.php index e3f9162..035df2f 100644 --- a/src/Billing/Model/PaymentPrice.php +++ b/src/Billing/Model/PaymentPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Billing/Model/PaymentPrices.php b/src/Billing/Model/PaymentPrices.php index 76817a6..ffe2929 100644 --- a/src/Billing/Model/PaymentPrices.php +++ b/src/Billing/Model/PaymentPrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Billing/Model/TransactionListTransactionsResponse.php b/src/Billing/Model/TransactionListTransactionsResponse.php index d90dc64..aeac179 100644 --- a/src/Billing/Model/TransactionListTransactionsResponse.php +++ b/src/Billing/Model/TransactionListTransactionsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Billing/Model/TransactionListTransactionsResponseData.php b/src/Billing/Model/TransactionListTransactionsResponseData.php index 5aae108..39cea8f 100644 --- a/src/Billing/Model/TransactionListTransactionsResponseData.php +++ b/src/Billing/Model/TransactionListTransactionsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Billing/Model/TransactionListTransactionsResponseDataResults.php b/src/Billing/Model/TransactionListTransactionsResponseDataResults.php index 3b83936..3e33d93 100644 --- a/src/Billing/Model/TransactionListTransactionsResponseDataResults.php +++ b/src/Billing/Model/TransactionListTransactionsResponseDataResults.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -223,9 +223,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -240,7 +240,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['action'] = isset($data['action']) ? $data['action'] : null; $this->container['creation_date'] = isset($data['creation_date']) ? $data['creation_date'] : null; diff --git a/src/Billing/Model/TransactionPrice.php b/src/Billing/Model/TransactionPrice.php index 7f356eb..e7edb3c 100644 --- a/src/Billing/Model/TransactionPrice.php +++ b/src/Billing/Model/TransactionPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Billing/Model/TransactionPrices.php b/src/Billing/Model/TransactionPrices.php index 06efb52..34d2f84 100644 --- a/src/Billing/Model/TransactionPrices.php +++ b/src/Billing/Model/TransactionPrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Client.php b/src/Client.php index de46041..d682c38 100644 --- a/src/Client.php +++ b/src/Client.php @@ -20,7 +20,7 @@ use Openprovider\Api\Rest\Client\SpamExpert\SpamExpertModule; use Openprovider\Api\Rest\Client\Auth\AuthModule; -class Client +class Client { /** @var BillingModule */ protected $BillingModule; @@ -62,9 +62,9 @@ class Client * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->BillingModule = new BillingModule($client, $config, $selector, $host_index); @@ -84,7 +84,7 @@ public function __construct( * Gets BillingModule module. * @return BillingModule */ - public function getBillingModule() + public function getBillingModule() { return $this->BillingModule; } @@ -93,7 +93,7 @@ public function getBillingModule() * Gets DnsModule module. * @return DnsModule */ - public function getDnsModule() + public function getDnsModule() { return $this->DnsModule; } @@ -102,7 +102,7 @@ public function getDnsModule() * Gets DomainModule module. * @return DomainModule */ - public function getDomainModule() + public function getDomainModule() { return $this->DomainModule; } @@ -111,7 +111,7 @@ public function getDomainModule() * Gets TldModule module. * @return TldModule */ - public function getTldModule() + public function getTldModule() { return $this->TldModule; } @@ -120,7 +120,7 @@ public function getTldModule() * Gets EmailTemplateModule module. * @return EmailTemplateModule */ - public function getEmailTemplateModule() + public function getEmailTemplateModule() { return $this->EmailTemplateModule; } @@ -129,7 +129,7 @@ public function getEmailTemplateModule() * Gets HelpersModule module. * @return HelpersModule */ - public function getHelpersModule() + public function getHelpersModule() { return $this->HelpersModule; } @@ -138,7 +138,7 @@ public function getHelpersModule() * Gets LicenseModule module. * @return LicenseModule */ - public function getLicenseModule() + public function getLicenseModule() { return $this->LicenseModule; } @@ -147,7 +147,7 @@ public function getLicenseModule() * Gets PersonModule module. * @return PersonModule */ - public function getPersonModule() + public function getPersonModule() { return $this->PersonModule; } @@ -156,7 +156,7 @@ public function getPersonModule() * Gets SslModule module. * @return SslModule */ - public function getSslModule() + public function getSslModule() { return $this->SslModule; } @@ -165,7 +165,7 @@ public function getSslModule() * Gets SpamExpertModule module. * @return SpamExpertModule */ - public function getSpamExpertModule() + public function getSpamExpertModule() { return $this->SpamExpertModule; } @@ -174,7 +174,7 @@ public function getSpamExpertModule() * Gets AuthModule module. * @return AuthModule */ - public function getAuthModule() + public function getAuthModule() { return $this->AuthModule; } diff --git a/src/Dns/Api/NameserverServiceApi.php b/src/Dns/Api/NameserverServiceApi.php index 41149a0..e2589ae 100644 --- a/src/Dns/Api/NameserverServiceApi.php +++ b/src/Dns/Api/NameserverServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class NameserverServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Dns/Api/NsGroupServiceApi.php b/src/Dns/Api/NsGroupServiceApi.php index 72abd81..c2f2a32 100644 --- a/src/Dns/Api/NsGroupServiceApi.php +++ b/src/Dns/Api/NsGroupServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class NsGroupServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Dns/Api/TemplateServiceApi.php b/src/Dns/Api/TemplateServiceApi.php index bfb97e2..6762b35 100644 --- a/src/Dns/Api/TemplateServiceApi.php +++ b/src/Dns/Api/TemplateServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class TemplateServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Dns/Api/ZoneRecordServiceApi.php b/src/Dns/Api/ZoneRecordServiceApi.php index 9642bc4..4cf76c4 100644 --- a/src/Dns/Api/ZoneRecordServiceApi.php +++ b/src/Dns/Api/ZoneRecordServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ZoneRecordServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Dns/Api/ZoneServiceApi.php b/src/Dns/Api/ZoneServiceApi.php index 8a470d1..b53a028 100644 --- a/src/Dns/Api/ZoneServiceApi.php +++ b/src/Dns/Api/ZoneServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ZoneServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Dns/DnsModule.php b/src/Dns/DnsModule.php index 80e370f..b7dc90c 100644 --- a/src/Dns/DnsModule.php +++ b/src/Dns/DnsModule.php @@ -14,7 +14,7 @@ use Openprovider\Api\Rest\Client\Dns\Api\ZoneRecordServiceApi; use Openprovider\Api\Rest\Client\Dns\Api\ZoneServiceApi; -class DnsModule +class DnsModule { /** @var NameserverServiceApi */ protected $NameserverServiceApi; @@ -38,9 +38,9 @@ class DnsModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->NameserverServiceApi = new NameserverServiceApi($client, $config, $selector, $host_index); @@ -54,7 +54,7 @@ public function __construct( * Gets NameserverServiceApi api. * @return NameserverServiceApi */ - public function getNameserverServiceApi() + public function getNameserverServiceApi() { return $this->NameserverServiceApi; } @@ -63,7 +63,7 @@ public function getNameserverServiceApi() * Gets NsGroupServiceApi api. * @return NsGroupServiceApi */ - public function getNsGroupServiceApi() + public function getNsGroupServiceApi() { return $this->NsGroupServiceApi; } @@ -72,7 +72,7 @@ public function getNsGroupServiceApi() * Gets TemplateServiceApi api. * @return TemplateServiceApi */ - public function getTemplateServiceApi() + public function getTemplateServiceApi() { return $this->TemplateServiceApi; } @@ -81,7 +81,7 @@ public function getTemplateServiceApi() * Gets ZoneRecordServiceApi api. * @return ZoneRecordServiceApi */ - public function getZoneRecordServiceApi() + public function getZoneRecordServiceApi() { return $this->ZoneRecordServiceApi; } @@ -90,7 +90,7 @@ public function getZoneRecordServiceApi() * Gets ZoneServiceApi api. * @return ZoneServiceApi */ - public function getZoneServiceApi() + public function getZoneServiceApi() { return $this->ZoneServiceApi; } diff --git a/src/Dns/Model/ErrorError.php b/src/Dns/Model/ErrorError.php index 871d87d..2d621eb 100644 --- a/src/Dns/Model/ErrorError.php +++ b/src/Dns/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/ErrorWarning.php b/src/Dns/Model/ErrorWarning.php index b495ccc..a5452e4 100644 --- a/src/Dns/Model/ErrorWarning.php +++ b/src/Dns/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/HistoryZoneHistory.php b/src/Dns/Model/HistoryZoneHistory.php index 6d300e2..566bfc7 100644 --- a/src/Dns/Model/HistoryZoneHistory.php +++ b/src/Dns/Model/HistoryZoneHistory.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['date'] = isset($data['date']) ? $data['date'] : null; $this->container['is'] = isset($data['is']) ? $data['is'] : null; diff --git a/src/Dns/Model/NameserverCreateNameserverResponse.php b/src/Dns/Model/NameserverCreateNameserverResponse.php index 6102d50..027af35 100644 --- a/src/Dns/Model/NameserverCreateNameserverResponse.php +++ b/src/Dns/Model/NameserverCreateNameserverResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NameserverGetNameserverResponse.php b/src/Dns/Model/NameserverGetNameserverResponse.php index 8515cb1..43f53b0 100644 --- a/src/Dns/Model/NameserverGetNameserverResponse.php +++ b/src/Dns/Model/NameserverGetNameserverResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NameserverListNameserversResponse.php b/src/Dns/Model/NameserverListNameserversResponse.php index f8b05d3..c720eae 100644 --- a/src/Dns/Model/NameserverListNameserversResponse.php +++ b/src/Dns/Model/NameserverListNameserversResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NameserverListNameserversResponseData.php b/src/Dns/Model/NameserverListNameserversResponseData.php index 2621b70..2824e42 100644 --- a/src/Dns/Model/NameserverListNameserversResponseData.php +++ b/src/Dns/Model/NameserverListNameserversResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Dns/Model/NameserverNameserver.php b/src/Dns/Model/NameserverNameserver.php index ac59ed6..ced2242 100644 --- a/src/Dns/Model/NameserverNameserver.php +++ b/src/Dns/Model/NameserverNameserver.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ip'] = isset($data['ip']) ? $data['ip'] : null; $this->container['ip6'] = isset($data['ip6']) ? $data['ip6'] : null; diff --git a/src/Dns/Model/NameserverNameserverBoolResponse.php b/src/Dns/Model/NameserverNameserverBoolResponse.php index e433a24..e4c0fcf 100644 --- a/src/Dns/Model/NameserverNameserverBoolResponse.php +++ b/src/Dns/Model/NameserverNameserverBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NameserverNameserverBoolResponseData.php b/src/Dns/Model/NameserverNameserverBoolResponseData.php index 8e9dd47..645dff2 100644 --- a/src/Dns/Model/NameserverNameserverBoolResponseData.php +++ b/src/Dns/Model/NameserverNameserverBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Dns/Model/NsGroupCreateGroupRequest.php b/src/Dns/Model/NsGroupCreateGroupRequest.php index 86d0c5f..f675e4e 100644 --- a/src/Dns/Model/NsGroupCreateGroupRequest.php +++ b/src/Dns/Model/NsGroupCreateGroupRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name_servers'] = isset($data['name_servers']) ? $data['name_servers'] : null; $this->container['ns_group'] = isset($data['ns_group']) ? $data['ns_group'] : null; diff --git a/src/Dns/Model/NsGroupCreateGroupResponse.php b/src/Dns/Model/NsGroupCreateGroupResponse.php index 05dccfa..44cabe5 100644 --- a/src/Dns/Model/NsGroupCreateGroupResponse.php +++ b/src/Dns/Model/NsGroupCreateGroupResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NsGroupGetGroupResponse.php b/src/Dns/Model/NsGroupGetGroupResponse.php index f29c6bb..e3c2f27 100644 --- a/src/Dns/Model/NsGroupGetGroupResponse.php +++ b/src/Dns/Model/NsGroupGetGroupResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NsGroupGroup.php b/src/Dns/Model/NsGroupGroup.php index 609a0a4..d6995d7 100644 --- a/src/Dns/Model/NsGroupGroup.php +++ b/src/Dns/Model/NsGroupGroup.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain_count'] = isset($data['domain_count']) ? $data['domain_count'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Dns/Model/NsGroupGroupBoolResponse.php b/src/Dns/Model/NsGroupGroupBoolResponse.php index a4bdb9b..f36f800 100644 --- a/src/Dns/Model/NsGroupGroupBoolResponse.php +++ b/src/Dns/Model/NsGroupGroupBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NsGroupGroupBoolResponseData.php b/src/Dns/Model/NsGroupGroupBoolResponseData.php index 9c49664..6cad8d9 100644 --- a/src/Dns/Model/NsGroupGroupBoolResponseData.php +++ b/src/Dns/Model/NsGroupGroupBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Dns/Model/NsGroupListGroupsOrderBy.php b/src/Dns/Model/NsGroupListGroupsOrderBy.php index 0ef271f..b30f352 100644 --- a/src/Dns/Model/NsGroupListGroupsOrderBy.php +++ b/src/Dns/Model/NsGroupListGroupsOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain_count'] = isset($data['domain_count']) ? $data['domain_count'] : null; $this->container['ns_count'] = isset($data['ns_count']) ? $data['ns_count'] : null; diff --git a/src/Dns/Model/NsGroupListGroupsResponse.php b/src/Dns/Model/NsGroupListGroupsResponse.php index ec7c380..da7f9a9 100644 --- a/src/Dns/Model/NsGroupListGroupsResponse.php +++ b/src/Dns/Model/NsGroupListGroupsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/NsGroupListGroupsResponseData.php b/src/Dns/Model/NsGroupListGroupsResponseData.php index 858f196..de68640 100644 --- a/src/Dns/Model/NsGroupListGroupsResponseData.php +++ b/src/Dns/Model/NsGroupListGroupsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Dns/Model/NsGroupNameServersSet.php b/src/Dns/Model/NsGroupNameServersSet.php index 023da98..f3e669d 100644 --- a/src/Dns/Model/NsGroupNameServersSet.php +++ b/src/Dns/Model/NsGroupNameServersSet.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['ip'] = isset($data['ip']) ? $data['ip'] : null; diff --git a/src/Dns/Model/NsGroupUpdateGroupRequest.php b/src/Dns/Model/NsGroupUpdateGroupRequest.php index dd797bb..4971a5a 100644 --- a/src/Dns/Model/NsGroupUpdateGroupRequest.php +++ b/src/Dns/Model/NsGroupUpdateGroupRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name_servers'] = isset($data['name_servers']) ? $data['name_servers'] : null; $this->container['ns_group'] = isset($data['ns_group']) ? $data['ns_group'] : null; diff --git a/src/Dns/Model/RecordListZoneRecordsOrderBy.php b/src/Dns/Model/RecordListZoneRecordsOrderBy.php index 36c099b..c562e7f 100644 --- a/src/Dns/Model/RecordListZoneRecordsOrderBy.php +++ b/src/Dns/Model/RecordListZoneRecordsOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : 'asc'; $this->container['prio'] = isset($data['prio']) ? $data['prio'] : null; diff --git a/src/Dns/Model/RecordListZoneRecordsResponse.php b/src/Dns/Model/RecordListZoneRecordsResponse.php index eca59c7..e5f3918 100644 --- a/src/Dns/Model/RecordListZoneRecordsResponse.php +++ b/src/Dns/Model/RecordListZoneRecordsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/RecordListZoneRecordsResponseData.php b/src/Dns/Model/RecordListZoneRecordsResponseData.php index bb0d54f..ce531b9 100644 --- a/src/Dns/Model/RecordListZoneRecordsResponseData.php +++ b/src/Dns/Model/RecordListZoneRecordsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Dns/Model/RecordRecordInfo.php b/src/Dns/Model/RecordRecordInfo.php index 01aef07..9b657e0 100644 --- a/src/Dns/Model/RecordRecordInfo.php +++ b/src/Dns/Model/RecordRecordInfo.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['creation_date'] = isset($data['creation_date']) ? $data['creation_date'] : null; $this->container['ip'] = isset($data['ip']) ? $data['ip'] : null; diff --git a/src/Dns/Model/TemplateCreateTemplateRequest.php b/src/Dns/Model/TemplateCreateTemplateRequest.php index 5271769..a76888b 100644 --- a/src/Dns/Model/TemplateCreateTemplateRequest.php +++ b/src/Dns/Model/TemplateCreateTemplateRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_spamexperts_enabled'] = isset($data['is_spamexperts_enabled']) ? $data['is_spamexperts_enabled'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Dns/Model/TemplateCreateTemplateResponse.php b/src/Dns/Model/TemplateCreateTemplateResponse.php index 452297f..c1edf81 100644 --- a/src/Dns/Model/TemplateCreateTemplateResponse.php +++ b/src/Dns/Model/TemplateCreateTemplateResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/TemplateCreateTemplateResponseData.php b/src/Dns/Model/TemplateCreateTemplateResponseData.php index 922678d..5e0c42c 100644 --- a/src/Dns/Model/TemplateCreateTemplateResponseData.php +++ b/src/Dns/Model/TemplateCreateTemplateResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Dns/Model/TemplateGetTemplateResponse.php b/src/Dns/Model/TemplateGetTemplateResponse.php index 8dfc1ed..9986063 100644 --- a/src/Dns/Model/TemplateGetTemplateResponse.php +++ b/src/Dns/Model/TemplateGetTemplateResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/TemplateListTemplatesResponse.php b/src/Dns/Model/TemplateListTemplatesResponse.php index 38cac7c..ff09fa8 100644 --- a/src/Dns/Model/TemplateListTemplatesResponse.php +++ b/src/Dns/Model/TemplateListTemplatesResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/TemplateListTemplatesResponseData.php b/src/Dns/Model/TemplateListTemplatesResponseData.php index e3c3d51..15abb28 100644 --- a/src/Dns/Model/TemplateListTemplatesResponseData.php +++ b/src/Dns/Model/TemplateListTemplatesResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Dns/Model/TemplateRecord.php b/src/Dns/Model/TemplateRecord.php index 2d2303e..fbe247a 100644 --- a/src/Dns/Model/TemplateRecord.php +++ b/src/Dns/Model/TemplateRecord.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Dns/Model/TemplateTemplate.php b/src/Dns/Model/TemplateTemplate.php index 946f984..71aea4c 100644 --- a/src/Dns/Model/TemplateTemplate.php +++ b/src/Dns/Model/TemplateTemplate.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['is_spamexperts_enabled'] = isset($data['is_spamexperts_enabled']) ? $data['is_spamexperts_enabled'] : null; diff --git a/src/Dns/Model/TemplateTemplateBoolResponse.php b/src/Dns/Model/TemplateTemplateBoolResponse.php index 884c872..df173c1 100644 --- a/src/Dns/Model/TemplateTemplateBoolResponse.php +++ b/src/Dns/Model/TemplateTemplateBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/TemplateTemplateBoolResponseData.php b/src/Dns/Model/TemplateTemplateBoolResponseData.php index df33845..5a73ca1 100644 --- a/src/Dns/Model/TemplateTemplateBoolResponseData.php +++ b/src/Dns/Model/TemplateTemplateBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Dns/Model/ZoneCreateZoneRequest.php b/src/Dns/Model/ZoneCreateZoneRequest.php index c64c357..43c684a 100644 --- a/src/Dns/Model/ZoneCreateZoneRequest.php +++ b/src/Dns/Model/ZoneCreateZoneRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['is_spamexperts_enabled'] = isset($data['is_spamexperts_enabled']) ? $data['is_spamexperts_enabled'] : null; diff --git a/src/Dns/Model/ZoneDomain.php b/src/Dns/Model/ZoneDomain.php index 16895dd..e6585bd 100644 --- a/src/Dns/Model/ZoneDomain.php +++ b/src/Dns/Model/ZoneDomain.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['extension'] = isset($data['extension']) ? $data['extension'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Dns/Model/ZoneGetZoneResponse.php b/src/Dns/Model/ZoneGetZoneResponse.php index 6b9a40c..593b96c 100644 --- a/src/Dns/Model/ZoneGetZoneResponse.php +++ b/src/Dns/Model/ZoneGetZoneResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/ZoneListZonesOrderBy.php b/src/Dns/Model/ZoneListZonesOrderBy.php index 27c1923..a3f472f 100644 --- a/src/Dns/Model/ZoneListZonesOrderBy.php +++ b/src/Dns/Model/ZoneListZonesOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['creation_date'] = isset($data['creation_date']) ? $data['creation_date'] : 'desc'; $this->container['modification_date'] = isset($data['modification_date']) ? $data['modification_date'] : null; diff --git a/src/Dns/Model/ZoneListZonesResponse.php b/src/Dns/Model/ZoneListZonesResponse.php index 2cfbe3c..9544926 100644 --- a/src/Dns/Model/ZoneListZonesResponse.php +++ b/src/Dns/Model/ZoneListZonesResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/ZoneListZonesResponseData.php b/src/Dns/Model/ZoneListZonesResponseData.php index 6159f1d..f1b2b38 100644 --- a/src/Dns/Model/ZoneListZonesResponseData.php +++ b/src/Dns/Model/ZoneListZonesResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Dns/Model/ZonePremiumDnsData.php b/src/Dns/Model/ZonePremiumDnsData.php index 802b44d..35f74b4 100644 --- a/src/Dns/Model/ZonePremiumDnsData.php +++ b/src/Dns/Model/ZonePremiumDnsData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['sectigo'] = isset($data['sectigo']) ? $data['sectigo'] : null; } diff --git a/src/Dns/Model/ZoneRecord.php b/src/Dns/Model/ZoneRecord.php index 564bed7..c8df2fc 100644 --- a/src/Dns/Model/ZoneRecord.php +++ b/src/Dns/Model/ZoneRecord.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['prio'] = isset($data['prio']) ? $data['prio'] : null; diff --git a/src/Dns/Model/ZoneRecordUpdates.php b/src/Dns/Model/ZoneRecordUpdates.php index ed161a4..2573d48 100644 --- a/src/Dns/Model/ZoneRecordUpdates.php +++ b/src/Dns/Model/ZoneRecordUpdates.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add'] = isset($data['add']) ? $data['add'] : null; $this->container['remove'] = isset($data['remove']) ? $data['remove'] : null; diff --git a/src/Dns/Model/ZoneRecordWithOriginal.php b/src/Dns/Model/ZoneRecordWithOriginal.php index fe24288..71e2b02 100644 --- a/src/Dns/Model/ZoneRecordWithOriginal.php +++ b/src/Dns/Model/ZoneRecordWithOriginal.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['original_record'] = isset($data['original_record']) ? $data['original_record'] : null; $this->container['record'] = isset($data['record']) ? $data['record'] : null; diff --git a/src/Dns/Model/ZoneSectigoData.php b/src/Dns/Model/ZoneSectigoData.php index 5617b84..648f85c 100644 --- a/src/Dns/Model/ZoneSectigoData.php +++ b/src/Dns/Model/ZoneSectigoData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['autorenew'] = isset($data['autorenew']) ? $data['autorenew'] : null; $this->container['order_date'] = isset($data['order_date']) ? $data['order_date'] : null; diff --git a/src/Dns/Model/ZoneUpdateZoneRequest.php b/src/Dns/Model/ZoneUpdateZoneRequest.php index 309b3b8..a7e6fcd 100644 --- a/src/Dns/Model/ZoneUpdateZoneRequest.php +++ b/src/Dns/Model/ZoneUpdateZoneRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -203,9 +203,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -220,7 +220,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Dns/Model/ZoneZone.php b/src/Dns/Model/ZoneZone.php index 7751a7d..e4767df 100644 --- a/src/Dns/Model/ZoneZone.php +++ b/src/Dns/Model/ZoneZone.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -238,9 +238,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -255,7 +255,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active'] = isset($data['active']) ? $data['active'] : null; $this->container['creation_date'] = isset($data['creation_date']) ? $data['creation_date'] : null; diff --git a/src/Dns/Model/ZoneZoneBoolResponse.php b/src/Dns/Model/ZoneZoneBoolResponse.php index 5d0896d..fb3372c 100644 --- a/src/Dns/Model/ZoneZoneBoolResponse.php +++ b/src/Dns/Model/ZoneZoneBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Dns/Model/ZoneZoneBoolResponseData.php b/src/Dns/Model/ZoneZoneBoolResponseData.php index 31499fb..80d9809 100644 --- a/src/Dns/Model/ZoneZoneBoolResponseData.php +++ b/src/Dns/Model/ZoneZoneBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Domain/Api/AdditionalDataApi.php b/src/Domain/Api/AdditionalDataApi.php index d814e5a..79e29eb 100644 --- a/src/Domain/Api/AdditionalDataApi.php +++ b/src/Domain/Api/AdditionalDataApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class AdditionalDataApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Domain/Api/AuthCodeApi.php b/src/Domain/Api/AuthCodeApi.php index fdacdbd..ef66d72 100644 --- a/src/Domain/Api/AuthCodeApi.php +++ b/src/Domain/Api/AuthCodeApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class AuthCodeApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Domain/Api/CustomerAdditionalDataApi.php b/src/Domain/Api/CustomerAdditionalDataApi.php index ad1233f..92561a1 100644 --- a/src/Domain/Api/CustomerAdditionalDataApi.php +++ b/src/Domain/Api/CustomerAdditionalDataApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class CustomerAdditionalDataApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Domain/Api/DomainPriceServiceApi.php b/src/Domain/Api/DomainPriceServiceApi.php index d690e32..f6b9190 100644 --- a/src/Domain/Api/DomainPriceServiceApi.php +++ b/src/Domain/Api/DomainPriceServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class DomainPriceServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Domain/Api/DomainServiceApi.php b/src/Domain/Api/DomainServiceApi.php index 3acfa58..1fa19da 100644 --- a/src/Domain/Api/DomainServiceApi.php +++ b/src/Domain/Api/DomainServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class DomainServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Domain/DomainModule.php b/src/Domain/DomainModule.php index 3aed244..58def51 100644 --- a/src/Domain/DomainModule.php +++ b/src/Domain/DomainModule.php @@ -14,7 +14,7 @@ use Openprovider\Api\Rest\Client\Domain\Api\DomainPriceServiceApi; use Openprovider\Api\Rest\Client\Domain\Api\DomainServiceApi; -class DomainModule +class DomainModule { /** @var AdditionalDataApi */ protected $AdditionalDataApi; @@ -38,9 +38,9 @@ class DomainModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->AdditionalDataApi = new AdditionalDataApi($client, $config, $selector, $host_index); @@ -54,7 +54,7 @@ public function __construct( * Gets AdditionalDataApi api. * @return AdditionalDataApi */ - public function getAdditionalDataApi() + public function getAdditionalDataApi() { return $this->AdditionalDataApi; } @@ -63,7 +63,7 @@ public function getAdditionalDataApi() * Gets AuthCodeApi api. * @return AuthCodeApi */ - public function getAuthCodeApi() + public function getAuthCodeApi() { return $this->AuthCodeApi; } @@ -72,7 +72,7 @@ public function getAuthCodeApi() * Gets CustomerAdditionalDataApi api. * @return CustomerAdditionalDataApi */ - public function getCustomerAdditionalDataApi() + public function getCustomerAdditionalDataApi() { return $this->CustomerAdditionalDataApi; } @@ -81,7 +81,7 @@ public function getCustomerAdditionalDataApi() * Gets DomainPriceServiceApi api. * @return DomainPriceServiceApi */ - public function getDomainPriceServiceApi() + public function getDomainPriceServiceApi() { return $this->DomainPriceServiceApi; } @@ -90,7 +90,7 @@ public function getDomainPriceServiceApi() * Gets DomainServiceApi api. * @return DomainServiceApi */ - public function getDomainServiceApi() + public function getDomainServiceApi() { return $this->DomainServiceApi; } diff --git a/src/Domain/Model/AdditionalDataGetAdditionalDataResponse.php b/src/Domain/Model/AdditionalDataGetAdditionalDataResponse.php index f405598..0d3eae8 100644 --- a/src/Domain/Model/AdditionalDataGetAdditionalDataResponse.php +++ b/src/Domain/Model/AdditionalDataGetAdditionalDataResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/AdditionalDataSelectOption.php b/src/Domain/Model/AdditionalDataSelectOption.php index a08a4f8..c5d46a7 100644 --- a/src/Domain/Model/AdditionalDataSelectOption.php +++ b/src/Domain/Model/AdditionalDataSelectOption.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/Domain/Model/AdditionalDataSpecification.php b/src/Domain/Model/AdditionalDataSpecification.php index 6c7e67c..4252c2b 100644 --- a/src/Domain/Model/AdditionalDataSpecification.php +++ b/src/Domain/Model/AdditionalDataSpecification.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Domain/Model/AuthcodeAuthInfo.php b/src/Domain/Model/AuthcodeAuthInfo.php index 62ddcf2..5915b2f 100644 --- a/src/Domain/Model/AuthcodeAuthInfo.php +++ b/src/Domain/Model/AuthcodeAuthInfo.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['pw'] = isset($data['pw']) ? $data['pw'] : null; } diff --git a/src/Domain/Model/AuthcodeGetAuthCodeResponse.php b/src/Domain/Model/AuthcodeGetAuthCodeResponse.php index a0f4f54..a726035 100644 --- a/src/Domain/Model/AuthcodeGetAuthCodeResponse.php +++ b/src/Domain/Model/AuthcodeGetAuthCodeResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/AuthcodeGetAuthCodeResponseData.php b/src/Domain/Model/AuthcodeGetAuthCodeResponseData.php index cd2d824..153fd18 100644 --- a/src/Domain/Model/AuthcodeGetAuthCodeResponseData.php +++ b/src/Domain/Model/AuthcodeGetAuthCodeResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; $this->container['success'] = isset($data['success']) ? $data['success'] : null; diff --git a/src/Domain/Model/AuthcodeResetAuthCodeRequest.php b/src/Domain/Model/AuthcodeResetAuthCodeRequest.php index 68310a8..e13ef32 100644 --- a/src/Domain/Model/AuthcodeResetAuthCodeRequest.php +++ b/src/Domain/Model/AuthcodeResetAuthCodeRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_code_type'] = isset($data['auth_code_type']) ? $data['auth_code_type'] : null; $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; diff --git a/src/Domain/Model/AuthcodeResetAuthCodeResponse.php b/src/Domain/Model/AuthcodeResetAuthCodeResponse.php index 2fae0ec..591a37e 100644 --- a/src/Domain/Model/AuthcodeResetAuthCodeResponse.php +++ b/src/Domain/Model/AuthcodeResetAuthCodeResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/AuthcodeResetAuthCodeResponseData.php b/src/Domain/Model/AuthcodeResetAuthCodeResponseData.php index 16822a7..4ab98c3 100644 --- a/src/Domain/Model/AuthcodeResetAuthCodeResponseData.php +++ b/src/Domain/Model/AuthcodeResetAuthCodeResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; $this->container['auth_info'] = isset($data['auth_info']) ? $data['auth_info'] : null; diff --git a/src/Domain/Model/AuthcodeRgpStatuses.php b/src/Domain/Model/AuthcodeRgpStatuses.php index a762c1c..8acd302 100644 --- a/src/Domain/Model/AuthcodeRgpStatuses.php +++ b/src/Domain/Model/AuthcodeRgpStatuses.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add_period'] = isset($data['add_period']) ? $data['add_period'] : null; $this->container['auto_renew_period'] = isset($data['auto_renew_period']) ? $data['auto_renew_period'] : null; diff --git a/src/Domain/Model/CustomerGetDataResponse.php b/src/Domain/Model/CustomerGetDataResponse.php index 26ec90c..e20d620 100644 --- a/src/Domain/Model/CustomerGetDataResponse.php +++ b/src/Domain/Model/CustomerGetDataResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainAbuseDetails.php b/src/Domain/Model/DomainAbuseDetails.php index 18e887f..567877a 100644 --- a/src/Domain/Model/DomainAbuseDetails.php +++ b/src/Domain/Model/DomainAbuseDetails.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['abuse_id'] = isset($data['abuse_id']) ? $data['abuse_id'] : null; $this->container['is_domain_held'] = isset($data['is_domain_held']) ? $data['is_domain_held'] : null; diff --git a/src/Domain/Model/DomainAdditionalData.php b/src/Domain/Model/DomainAdditionalData.php index ecebbae..cb292a8 100644 --- a/src/Domain/Model/DomainAdditionalData.php +++ b/src/Domain/Model/DomainAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -353,9 +353,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -370,7 +370,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['abogado_acceptance'] = isset($data['abogado_acceptance']) ? $data['abogado_acceptance'] : null; $this->container['admin_sing_pass_id'] = isset($data['admin_sing_pass_id']) ? $data['admin_sing_pass_id'] : null; diff --git a/src/Domain/Model/DomainApiHistory.php b/src/Domain/Model/DomainApiHistory.php index 25601a7..a7bf45c 100644 --- a/src/Domain/Model/DomainApiHistory.php +++ b/src/Domain/Model/DomainApiHistory.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cmd'] = isset($data['cmd']) ? $data['cmd'] : null; $this->container['created_at'] = isset($data['created_at']) ? $data['created_at'] : null; diff --git a/src/Domain/Model/DomainApproveTransferRequest.php b/src/Domain/Model/DomainApproveTransferRequest.php index 2a1fe5e..f42efee 100644 --- a/src/Domain/Model/DomainApproveTransferRequest.php +++ b/src/Domain/Model/DomainApproveTransferRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approve'] = isset($data['approve']) ? $data['approve'] : null; $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; diff --git a/src/Domain/Model/DomainCheckAdditionalData.php b/src/Domain/Model/DomainCheckAdditionalData.php index bb5cc2d..44a2b32 100644 --- a/src/Domain/Model/DomainCheckAdditionalData.php +++ b/src/Domain/Model/DomainCheckAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['idn_script'] = isset($data['idn_script']) ? $data['idn_script'] : null; } diff --git a/src/Domain/Model/DomainCheckDomainRequest.php b/src/Domain/Model/DomainCheckDomainRequest.php index 4ffbdd4..dedc9d4 100644 --- a/src/Domain/Model/DomainCheckDomainRequest.php +++ b/src/Domain/Model/DomainCheckDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['application_mode'] = isset($data['application_mode']) ? $data['application_mode'] : null; diff --git a/src/Domain/Model/DomainCheckDomainResponse.php b/src/Domain/Model/DomainCheckDomainResponse.php index 8edcfce..62b8235 100644 --- a/src/Domain/Model/DomainCheckDomainResponse.php +++ b/src/Domain/Model/DomainCheckDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainCheckDomainResponseData.php b/src/Domain/Model/DomainCheckDomainResponseData.php index 02280e5..fdc0a7f 100644 --- a/src/Domain/Model/DomainCheckDomainResponseData.php +++ b/src/Domain/Model/DomainCheckDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; } diff --git a/src/Domain/Model/DomainCheckDomainResult.php b/src/Domain/Model/DomainCheckDomainResult.php index c5f034d..7aa72f9 100644 --- a/src/Domain/Model/DomainCheckDomainResult.php +++ b/src/Domain/Model/DomainCheckDomainResult.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['claim_key'] = isset($data['claim_key']) ? $data['claim_key'] : null; $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; diff --git a/src/Domain/Model/DomainCreateDomainRequest.php b/src/Domain/Model/DomainCreateDomainRequest.php index c3bd067..3897a0e 100644 --- a/src/Domain/Model/DomainCreateDomainRequest.php +++ b/src/Domain/Model/DomainCreateDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -308,9 +308,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -325,7 +325,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['accept_eap_fee'] = isset($data['accept_eap_fee']) ? $data['accept_eap_fee'] : null; $this->container['accept_premium_fee'] = isset($data['accept_premium_fee']) ? $data['accept_premium_fee'] : null; diff --git a/src/Domain/Model/DomainCreateDomainResponse.php b/src/Domain/Model/DomainCreateDomainResponse.php index 5f08d14..0cd5bbf 100644 --- a/src/Domain/Model/DomainCreateDomainResponse.php +++ b/src/Domain/Model/DomainCreateDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainCreateDomainResponseData.php b/src/Domain/Model/DomainCreateDomainResponseData.php index b59f9de..e740bb4 100644 --- a/src/Domain/Model/DomainCreateDomainResponseData.php +++ b/src/Domain/Model/DomainCreateDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activation_date'] = isset($data['activation_date']) ? $data['activation_date'] : null; $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; diff --git a/src/Domain/Model/DomainDeleteDomainResponse.php b/src/Domain/Model/DomainDeleteDomainResponse.php index b2a9e22..c034807 100644 --- a/src/Domain/Model/DomainDeleteDomainResponse.php +++ b/src/Domain/Model/DomainDeleteDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainDeleteDomainResponseData.php b/src/Domain/Model/DomainDeleteDomainResponseData.php index 2a6f2f1..de56fdb 100644 --- a/src/Domain/Model/DomainDeleteDomainResponseData.php +++ b/src/Domain/Model/DomainDeleteDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['status'] = isset($data['status']) ? $data['status'] : null; } diff --git a/src/Domain/Model/DomainDnssecKey.php b/src/Domain/Model/DomainDnssecKey.php index 8691882..7861422 100644 --- a/src/Domain/Model/DomainDnssecKey.php +++ b/src/Domain/Model/DomainDnssecKey.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['alg'] = isset($data['alg']) ? $data['alg'] : null; $this->container['flags'] = isset($data['flags']) ? $data['flags'] : null; diff --git a/src/Domain/Model/DomainDomain.php b/src/Domain/Model/DomainDomain.php index 418bf65..90d3725 100644 --- a/src/Domain/Model/DomainDomain.php +++ b/src/Domain/Model/DomainDomain.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['extension'] = isset($data['extension']) ? $data['extension'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Domain/Model/DomainGetDomainResponse.php b/src/Domain/Model/DomainGetDomainResponse.php index 161e857..5a1c517 100644 --- a/src/Domain/Model/DomainGetDomainResponse.php +++ b/src/Domain/Model/DomainGetDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainGetDomainResponseData.php b/src/Domain/Model/DomainGetDomainResponseData.php index 01f6d8c..da0564c 100644 --- a/src/Domain/Model/DomainGetDomainResponseData.php +++ b/src/Domain/Model/DomainGetDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -553,9 +553,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -570,7 +570,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['abuse_details'] = isset($data['abuse_details']) ? $data['abuse_details'] : null; $this->container['active_date'] = isset($data['active_date']) ? $data['active_date'] : null; diff --git a/src/Domain/Model/DomainHistory.php b/src/Domain/Model/DomainHistory.php index 3b6acf7..4fab4bf 100644 --- a/src/Domain/Model/DomainHistory.php +++ b/src/Domain/Model/DomainHistory.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['contents'] = isset($data['contents']) ? $data['contents'] : null; $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; diff --git a/src/Domain/Model/DomainListDomainsRequestOrderBy.php b/src/Domain/Model/DomainListDomainsRequestOrderBy.php index 5e6d4a6..14a070d 100644 --- a/src/Domain/Model/DomainListDomainsRequestOrderBy.php +++ b/src/Domain/Model/DomainListDomainsRequestOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -203,9 +203,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -220,7 +220,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active_date'] = isset($data['active_date']) ? $data['active_date'] : null; $this->container['domain_extension'] = isset($data['domain_extension']) ? $data['domain_extension'] : null; diff --git a/src/Domain/Model/DomainListDomainsRequestResponseField.php b/src/Domain/Model/DomainListDomainsRequestResponseField.php index 2d5f687..3dd0174 100644 --- a/src/Domain/Model/DomainListDomainsRequestResponseField.php +++ b/src/Domain/Model/DomainListDomainsRequestResponseField.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['to'] = isset($data['to']) ? $data['to'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; diff --git a/src/Domain/Model/DomainListDomainsResponse.php b/src/Domain/Model/DomainListDomainsResponse.php index 4409720..f2bf4bb 100644 --- a/src/Domain/Model/DomainListDomainsResponse.php +++ b/src/Domain/Model/DomainListDomainsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainListDomainsResponseData.php b/src/Domain/Model/DomainListDomainsResponseData.php index d25e95c..c723073 100644 --- a/src/Domain/Model/DomainListDomainsResponseData.php +++ b/src/Domain/Model/DomainListDomainsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Domain/Model/DomainNameserver.php b/src/Domain/Model/DomainNameserver.php index 9df0ec0..92ad43e 100644 --- a/src/Domain/Model/DomainNameserver.php +++ b/src/Domain/Model/DomainNameserver.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ip'] = isset($data['ip']) ? $data['ip'] : null; $this->container['ip6'] = isset($data['ip6']) ? $data['ip6'] : null; diff --git a/src/Domain/Model/DomainOperationPrice.php b/src/Domain/Model/DomainOperationPrice.php index a7b7555..d3bc4cf 100644 --- a/src/Domain/Model/DomainOperationPrice.php +++ b/src/Domain/Model/DomainOperationPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['create'] = isset($data['create']) ? $data['create'] : null; } diff --git a/src/Domain/Model/DomainOwner.php b/src/Domain/Model/DomainOwner.php index 77daa12..7f61fb0 100644 --- a/src/Domain/Model/DomainOwner.php +++ b/src/Domain/Model/DomainOwner.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['company_name'] = isset($data['company_name']) ? $data['company_name'] : null; $this->container['full_name'] = isset($data['full_name']) ? $data['full_name'] : null; diff --git a/src/Domain/Model/DomainPremiumPrice.php b/src/Domain/Model/DomainPremiumPrice.php index c9679b7..7435af1 100644 --- a/src/Domain/Model/DomainPremiumPrice.php +++ b/src/Domain/Model/DomainPremiumPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Domain/Model/DomainPrice.php b/src/Domain/Model/DomainPrice.php index dba692d..458b5e2 100644 --- a/src/Domain/Model/DomainPrice.php +++ b/src/Domain/Model/DomainPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Domain/Model/DomainPriceGroup.php b/src/Domain/Model/DomainPriceGroup.php index 9df39ec..196c72e 100644 --- a/src/Domain/Model/DomainPriceGroup.php +++ b/src/Domain/Model/DomainPriceGroup.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Domain/Model/DomainRegistryStatus.php b/src/Domain/Model/DomainRegistryStatus.php index aa24212..8a95a06 100644 --- a/src/Domain/Model/DomainRegistryStatus.php +++ b/src/Domain/Model/DomainRegistryStatus.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_changeable'] = isset($data['is_changeable']) ? $data['is_changeable'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/Domain/Model/DomainRegistryStatuses.php b/src/Domain/Model/DomainRegistryStatuses.php index a2531b9..b890cb0 100644 --- a/src/Domain/Model/DomainRegistryStatuses.php +++ b/src/Domain/Model/DomainRegistryStatuses.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['client_hold'] = isset($data['client_hold']) ? $data['client_hold'] : null; $this->container['client_transfer_prohibited'] = isset($data['client_transfer_prohibited']) ? $data['client_transfer_prohibited'] : null; diff --git a/src/Domain/Model/DomainRenewDomainRequest.php b/src/Domain/Model/DomainRenewDomainRequest.php index d094785..a83e9cf 100644 --- a/src/Domain/Model/DomainRenewDomainRequest.php +++ b/src/Domain/Model/DomainRenewDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Domain/Model/DomainRenewDomainResponse.php b/src/Domain/Model/DomainRenewDomainResponse.php index 064e7d1..98ba486 100644 --- a/src/Domain/Model/DomainRenewDomainResponse.php +++ b/src/Domain/Model/DomainRenewDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainRenewDomainResponseData.php b/src/Domain/Model/DomainRenewDomainResponseData.php index b7ab1bb..0196af4 100644 --- a/src/Domain/Model/DomainRenewDomainResponseData.php +++ b/src/Domain/Model/DomainRenewDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['status'] = isset($data['status']) ? $data['status'] : null; } diff --git a/src/Domain/Model/DomainRestoreDomainRequest.php b/src/Domain/Model/DomainRestoreDomainRequest.php index e6f6f5b..f8ac716 100644 --- a/src/Domain/Model/DomainRestoreDomainRequest.php +++ b/src/Domain/Model/DomainRestoreDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Domain/Model/DomainRestoreDomainResponse.php b/src/Domain/Model/DomainRestoreDomainResponse.php index 6f177e4..3cf3900 100644 --- a/src/Domain/Model/DomainRestoreDomainResponse.php +++ b/src/Domain/Model/DomainRestoreDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainRestoreDomainResponseData.php b/src/Domain/Model/DomainRestoreDomainResponseData.php index 28669b9..52214e2 100644 --- a/src/Domain/Model/DomainRestoreDomainResponseData.php +++ b/src/Domain/Model/DomainRestoreDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['status'] = isset($data['status']) ? $data['status'] : null; } diff --git a/src/Domain/Model/DomainSendFoa1Request.php b/src/Domain/Model/DomainSendFoa1Request.php index c79a463..594929c 100644 --- a/src/Domain/Model/DomainSendFoa1Request.php +++ b/src/Domain/Model/DomainSendFoa1Request.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Domain/Model/DomainSuggestNameDomainRequest.php b/src/Domain/Model/DomainSuggestNameDomainRequest.php index 870bfa1..dc9e419 100644 --- a/src/Domain/Model/DomainSuggestNameDomainRequest.php +++ b/src/Domain/Model/DomainSuggestNameDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['language'] = isset($data['language']) ? $data['language'] : null; $this->container['limit'] = isset($data['limit']) ? $data['limit'] : null; diff --git a/src/Domain/Model/DomainSuggestNameDomainResponse.php b/src/Domain/Model/DomainSuggestNameDomainResponse.php index 463dfda..ab5d5a7 100644 --- a/src/Domain/Model/DomainSuggestNameDomainResponse.php +++ b/src/Domain/Model/DomainSuggestNameDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainSuggestNameDomainResponseData.php b/src/Domain/Model/DomainSuggestNameDomainResponseData.php index 8f27f39..6c69ac1 100644 --- a/src/Domain/Model/DomainSuggestNameDomainResponseData.php +++ b/src/Domain/Model/DomainSuggestNameDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; } diff --git a/src/Domain/Model/DomainSuggestNameDomainResult.php b/src/Domain/Model/DomainSuggestNameDomainResult.php index 6fae004..8db280a 100644 --- a/src/Domain/Model/DomainSuggestNameDomainResult.php +++ b/src/Domain/Model/DomainSuggestNameDomainResult.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Domain/Model/DomainTradeDomainRequest.php b/src/Domain/Model/DomainTradeDomainRequest.php index 43e8771..6518d8f 100644 --- a/src/Domain/Model/DomainTradeDomainRequest.php +++ b/src/Domain/Model/DomainTradeDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -243,9 +243,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -260,7 +260,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['admin_handle'] = isset($data['admin_handle']) ? $data['admin_handle'] : null; diff --git a/src/Domain/Model/DomainTradeDomainResponse.php b/src/Domain/Model/DomainTradeDomainResponse.php index a7195e4..2925ac0 100644 --- a/src/Domain/Model/DomainTradeDomainResponse.php +++ b/src/Domain/Model/DomainTradeDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainTradeDomainResponseData.php b/src/Domain/Model/DomainTradeDomainResponseData.php index 892fdd4..64917df 100644 --- a/src/Domain/Model/DomainTradeDomainResponseData.php +++ b/src/Domain/Model/DomainTradeDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['creation_date'] = isset($data['creation_date']) ? $data['creation_date'] : null; $this->container['expiration_date'] = isset($data['expiration_date']) ? $data['expiration_date'] : null; diff --git a/src/Domain/Model/DomainTransferAdditionalData.php b/src/Domain/Model/DomainTransferAdditionalData.php index 8729137..b9b2e05 100644 --- a/src/Domain/Model/DomainTransferAdditionalData.php +++ b/src/Domain/Model/DomainTransferAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -258,9 +258,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -275,7 +275,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['admin_sing_pass_id'] = isset($data['admin_sing_pass_id']) ? $data['admin_sing_pass_id'] : null; $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; diff --git a/src/Domain/Model/DomainTransferDomainRequest.php b/src/Domain/Model/DomainTransferDomainRequest.php index 8e1fb95..af90658 100644 --- a/src/Domain/Model/DomainTransferDomainRequest.php +++ b/src/Domain/Model/DomainTransferDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -273,9 +273,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -290,7 +290,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['accept_premium_fee'] = isset($data['accept_premium_fee']) ? $data['accept_premium_fee'] : null; $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; diff --git a/src/Domain/Model/DomainTransferDomainResponse.php b/src/Domain/Model/DomainTransferDomainResponse.php index 273e29a..515818b 100644 --- a/src/Domain/Model/DomainTransferDomainResponse.php +++ b/src/Domain/Model/DomainTransferDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainTransferDomainResponseData.php b/src/Domain/Model/DomainTransferDomainResponseData.php index c62a294..f0e5fb4 100644 --- a/src/Domain/Model/DomainTransferDomainResponseData.php +++ b/src/Domain/Model/DomainTransferDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -208,9 +208,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -225,7 +225,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; $this->container['description'] = isset($data['description']) ? $data['description'] : null; diff --git a/src/Domain/Model/DomainTryAgainLastOperationRequest.php b/src/Domain/Model/DomainTryAgainLastOperationRequest.php index 0b5c20c..4b32448 100644 --- a/src/Domain/Model/DomainTryAgainLastOperationRequest.php +++ b/src/Domain/Model/DomainTryAgainLastOperationRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null; $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; diff --git a/src/Domain/Model/DomainUINDocumentType.php b/src/Domain/Model/DomainUINDocumentType.php index a7efa2e..90f0924 100644 --- a/src/Domain/Model/DomainUINDocumentType.php +++ b/src/Domain/Model/DomainUINDocumentType.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['doc_type'] = isset($data['doc_type']) ? $data['doc_type'] : null; diff --git a/src/Domain/Model/DomainUpdateAdditionalData.php b/src/Domain/Model/DomainUpdateAdditionalData.php index 356485d..dd327e3 100644 --- a/src/Domain/Model/DomainUpdateAdditionalData.php +++ b/src/Domain/Model/DomainUpdateAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -243,9 +243,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -260,7 +260,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['abogado_acceptance'] = isset($data['abogado_acceptance']) ? $data['abogado_acceptance'] : null; $this->container['admin_sing_pass_id'] = isset($data['admin_sing_pass_id']) ? $data['admin_sing_pass_id'] : null; diff --git a/src/Domain/Model/DomainUpdateDomainRequest.php b/src/Domain/Model/DomainUpdateDomainRequest.php index b49135c..1395f5c 100644 --- a/src/Domain/Model/DomainUpdateDomainRequest.php +++ b/src/Domain/Model/DomainUpdateDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -293,9 +293,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -310,7 +310,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['accept_update_fee'] = isset($data['accept_update_fee']) ? $data['accept_update_fee'] : null; $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; diff --git a/src/Domain/Model/DomainUpdateDomainResponse.php b/src/Domain/Model/DomainUpdateDomainResponse.php index 31afeaa..db72b51 100644 --- a/src/Domain/Model/DomainUpdateDomainResponse.php +++ b/src/Domain/Model/DomainUpdateDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/DomainUpdateDomainResponseData.php b/src/Domain/Model/DomainUpdateDomainResponseData.php index 3617bbd..52c72be 100644 --- a/src/Domain/Model/DomainUpdateDomainResponseData.php +++ b/src/Domain/Model/DomainUpdateDomainResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['status'] = isset($data['status']) ? $data['status'] : null; diff --git a/src/Domain/Model/DomainWhoisPrivacyData.php b/src/Domain/Model/DomainWhoisPrivacyData.php index 7272297..61a2e8d 100644 --- a/src/Domain/Model/DomainWhoisPrivacyData.php +++ b/src/Domain/Model/DomainWhoisPrivacyData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expiration_date'] = isset($data['expiration_date']) ? $data['expiration_date'] : null; } diff --git a/src/Domain/Model/ErrorError.php b/src/Domain/Model/ErrorError.php index 32b16f3..57fda0a 100644 --- a/src/Domain/Model/ErrorError.php +++ b/src/Domain/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/ErrorWarning.php b/src/Domain/Model/ErrorWarning.php index 442a34e..1f76c0e 100644 --- a/src/Domain/Model/ErrorWarning.php +++ b/src/Domain/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/PriceGetPriceResponse.php b/src/Domain/Model/PriceGetPriceResponse.php index ab4e7de..75924d0 100644 --- a/src/Domain/Model/PriceGetPriceResponse.php +++ b/src/Domain/Model/PriceGetPriceResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/PriceGetPriceResponseData.php b/src/Domain/Model/PriceGetPriceResponseData.php index c05ca05..f48a47f 100644 --- a/src/Domain/Model/PriceGetPriceResponseData.php +++ b/src/Domain/Model/PriceGetPriceResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_premium'] = isset($data['is_premium']) ? $data['is_premium'] : null; $this->container['is_promotion'] = isset($data['is_promotion']) ? $data['is_promotion'] : null; diff --git a/src/Domain/Model/PricePromotionData.php b/src/Domain/Model/PricePromotionData.php index 325a96c..1f74922 100644 --- a/src/Domain/Model/PricePromotionData.php +++ b/src/Domain/Model/PricePromotionData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null; $this->container['start_date'] = isset($data['start_date']) ? $data['start_date'] : null; diff --git a/src/Domain/Model/ResponseBoolResponse.php b/src/Domain/Model/ResponseBoolResponse.php index d43e4d2..eccbc28 100644 --- a/src/Domain/Model/ResponseBoolResponse.php +++ b/src/Domain/Model/ResponseBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Domain/Model/ResponseBoolResponseData.php b/src/Domain/Model/ResponseBoolResponseData.php index ebd95b2..064223d 100644 --- a/src/Domain/Model/ResponseBoolResponseData.php +++ b/src/Domain/Model/ResponseBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/EmailTemplate/Api/EmailApi.php b/src/EmailTemplate/Api/EmailApi.php index 4e780bb..b1af00b 100644 --- a/src/EmailTemplate/Api/EmailApi.php +++ b/src/EmailTemplate/Api/EmailApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class EmailApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/EmailTemplate/EmailTemplateModule.php b/src/EmailTemplate/EmailTemplateModule.php index 7d70702..2189100 100644 --- a/src/EmailTemplate/EmailTemplateModule.php +++ b/src/EmailTemplate/EmailTemplateModule.php @@ -10,7 +10,7 @@ use Openprovider\Api\Rest\Client\Base\HeaderSelector; use Openprovider\Api\Rest\Client\Template\Api\EmailApi; -class EmailTemplateModule +class EmailTemplateModule { /** @var EmailApi */ protected $EmailApi; @@ -22,9 +22,9 @@ class EmailTemplateModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->EmailApi = new EmailApi($client, $config, $selector, $host_index); @@ -34,7 +34,7 @@ public function __construct( * Gets EmailApi api. * @return EmailApi */ - public function getEmailApi() + public function getEmailApi() { return $this->EmailApi; } diff --git a/src/EmailTemplate/Model/EmailCreateEmailRequest.php b/src/EmailTemplate/Model/EmailCreateEmailRequest.php index f20273b..dd313c8 100644 --- a/src/EmailTemplate/Model/EmailCreateEmailRequest.php +++ b/src/EmailTemplate/Model/EmailCreateEmailRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['fields'] = isset($data['fields']) ? $data['fields'] : null; $this->container['group'] = isset($data['group']) ? $data['group'] : null; diff --git a/src/EmailTemplate/Model/EmailCreateEmailResponse.php b/src/EmailTemplate/Model/EmailCreateEmailResponse.php index 65b881a..82bff50 100644 --- a/src/EmailTemplate/Model/EmailCreateEmailResponse.php +++ b/src/EmailTemplate/Model/EmailCreateEmailResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/EmailTemplate/Model/EmailCreateEmailResponseData.php b/src/EmailTemplate/Model/EmailCreateEmailResponseData.php index e0d4734..9226dbb 100644 --- a/src/EmailTemplate/Model/EmailCreateEmailResponseData.php +++ b/src/EmailTemplate/Model/EmailCreateEmailResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/EmailTemplate/Model/EmailDeleteEmailResponse.php b/src/EmailTemplate/Model/EmailDeleteEmailResponse.php index a1e7321..e62f642 100644 --- a/src/EmailTemplate/Model/EmailDeleteEmailResponse.php +++ b/src/EmailTemplate/Model/EmailDeleteEmailResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/EmailTemplate/Model/EmailDeleteEmailResponseData.php b/src/EmailTemplate/Model/EmailDeleteEmailResponseData.php index 0140f5d..a01e1f1 100644 --- a/src/EmailTemplate/Model/EmailDeleteEmailResponseData.php +++ b/src/EmailTemplate/Model/EmailDeleteEmailResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/EmailTemplate/Model/EmailFields.php b/src/EmailTemplate/Model/EmailFields.php index 9b5c3f4..d88a09f 100644 --- a/src/EmailTemplate/Model/EmailFields.php +++ b/src/EmailTemplate/Model/EmailFields.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/EmailTemplate/Model/EmailListEmailsResponse.php b/src/EmailTemplate/Model/EmailListEmailsResponse.php index 3e4f44c..720d1d7 100644 --- a/src/EmailTemplate/Model/EmailListEmailsResponse.php +++ b/src/EmailTemplate/Model/EmailListEmailsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/EmailTemplate/Model/EmailListEmailsResponseData.php b/src/EmailTemplate/Model/EmailListEmailsResponseData.php index 81b94a9..1d0f493 100644 --- a/src/EmailTemplate/Model/EmailListEmailsResponseData.php +++ b/src/EmailTemplate/Model/EmailListEmailsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/EmailTemplate/Model/EmailListEmailsResponseDataResults.php b/src/EmailTemplate/Model/EmailListEmailsResponseDataResults.php index 5aa7d69..310ac1f 100644 --- a/src/EmailTemplate/Model/EmailListEmailsResponseDataResults.php +++ b/src/EmailTemplate/Model/EmailListEmailsResponseDataResults.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['fields'] = isset($data['fields']) ? $data['fields'] : null; $this->container['group'] = isset($data['group']) ? $data['group'] : null; diff --git a/src/EmailTemplate/Model/EmailTags.php b/src/EmailTemplate/Model/EmailTags.php index d49551d..149043b 100644 --- a/src/EmailTemplate/Model/EmailTags.php +++ b/src/EmailTemplate/Model/EmailTags.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['key'] = isset($data['key']) ? $data['key'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/EmailTemplate/Model/EmailUpdateEmailRequest.php b/src/EmailTemplate/Model/EmailUpdateEmailRequest.php index 73517e6..ad6a709 100644 --- a/src/EmailTemplate/Model/EmailUpdateEmailRequest.php +++ b/src/EmailTemplate/Model/EmailUpdateEmailRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['fields'] = isset($data['fields']) ? $data['fields'] : null; $this->container['group'] = isset($data['group']) ? $data['group'] : null; diff --git a/src/EmailTemplate/Model/EmailUpdateEmailResponse.php b/src/EmailTemplate/Model/EmailUpdateEmailResponse.php index 56cbdc4..c2e3fb6 100644 --- a/src/EmailTemplate/Model/EmailUpdateEmailResponse.php +++ b/src/EmailTemplate/Model/EmailUpdateEmailResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/EmailTemplate/Model/EmailUpdateEmailResponseData.php b/src/EmailTemplate/Model/EmailUpdateEmailResponseData.php index 6bfb6f8..77e7db0 100644 --- a/src/EmailTemplate/Model/EmailUpdateEmailResponseData.php +++ b/src/EmailTemplate/Model/EmailUpdateEmailResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/EmailTemplate/Model/ErrorError.php b/src/EmailTemplate/Model/ErrorError.php index 85568f4..409fb2d 100644 --- a/src/EmailTemplate/Model/ErrorError.php +++ b/src/EmailTemplate/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/EmailTemplate/Model/ErrorWarning.php b/src/EmailTemplate/Model/ErrorWarning.php index 4539f97..6151a70 100644 --- a/src/EmailTemplate/Model/ErrorWarning.php +++ b/src/EmailTemplate/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Api/TagServiceApi.php b/src/Helpers/Api/TagServiceApi.php index 7131f57..6b7865a 100644 --- a/src/Helpers/Api/TagServiceApi.php +++ b/src/Helpers/Api/TagServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class TagServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Helpers/HelpersModule.php b/src/Helpers/HelpersModule.php index c1383bd..9810b1b 100644 --- a/src/Helpers/HelpersModule.php +++ b/src/Helpers/HelpersModule.php @@ -10,7 +10,7 @@ use Openprovider\Api\Rest\Client\Base\HeaderSelector; use Openprovider\Api\Rest\Client\Helpers\Api\TagServiceApi; -class HelpersModule +class HelpersModule { /** @var TagServiceApi */ protected $TagServiceApi; @@ -22,9 +22,9 @@ class HelpersModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->TagServiceApi = new TagServiceApi($client, $config, $selector, $host_index); @@ -34,7 +34,7 @@ public function __construct( * Gets TagServiceApi api. * @return TagServiceApi */ - public function getTagServiceApi() + public function getTagServiceApi() { return $this->TagServiceApi; } diff --git a/src/Helpers/Model/ErrorError.php b/src/Helpers/Model/ErrorError.php index 3796403..3e45413 100644 --- a/src/Helpers/Model/ErrorError.php +++ b/src/Helpers/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Model/ErrorWarning.php b/src/Helpers/Model/ErrorWarning.php index 779517d..7e217fe 100644 --- a/src/Helpers/Model/ErrorWarning.php +++ b/src/Helpers/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Model/HelperstagTag.php b/src/Helpers/Model/HelperstagTag.php index d35caef..0a6c075 100644 --- a/src/Helpers/Model/HelperstagTag.php +++ b/src/Helpers/Model/HelperstagTag.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['key'] = isset($data['key']) ? $data['key'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/Helpers/Model/TagCreateTagResponse.php b/src/Helpers/Model/TagCreateTagResponse.php index a15df1b..724002c 100644 --- a/src/Helpers/Model/TagCreateTagResponse.php +++ b/src/Helpers/Model/TagCreateTagResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Model/TagCreateTagResponseData.php b/src/Helpers/Model/TagCreateTagResponseData.php index 71bf4d4..03e0672 100644 --- a/src/Helpers/Model/TagCreateTagResponseData.php +++ b/src/Helpers/Model/TagCreateTagResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Helpers/Model/TagDeleteTagResponse.php b/src/Helpers/Model/TagDeleteTagResponse.php index d2db140..e059539 100644 --- a/src/Helpers/Model/TagDeleteTagResponse.php +++ b/src/Helpers/Model/TagDeleteTagResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Model/TagDeleteTagResponseData.php b/src/Helpers/Model/TagDeleteTagResponseData.php index 9dd8f58..1c9f90f 100644 --- a/src/Helpers/Model/TagDeleteTagResponseData.php +++ b/src/Helpers/Model/TagDeleteTagResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Helpers/Model/TagListTagsResponse.php b/src/Helpers/Model/TagListTagsResponse.php index 7c977b7..292e344 100644 --- a/src/Helpers/Model/TagListTagsResponse.php +++ b/src/Helpers/Model/TagListTagsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Helpers/Model/TagListTagsResponseData.php b/src/Helpers/Model/TagListTagsResponseData.php index f165ec6..8f71b12 100644 --- a/src/Helpers/Model/TagListTagsResponseData.php +++ b/src/Helpers/Model/TagListTagsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/License/Api/LicenseServiceApi.php b/src/License/Api/LicenseServiceApi.php index 057c25e..9a8332d 100644 --- a/src/License/Api/LicenseServiceApi.php +++ b/src/License/Api/LicenseServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class LicenseServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/License/LicenseModule.php b/src/License/LicenseModule.php index f1087b8..6d0c62f 100644 --- a/src/License/LicenseModule.php +++ b/src/License/LicenseModule.php @@ -10,7 +10,7 @@ use Openprovider\Api\Rest\Client\Base\HeaderSelector; use Openprovider\Api\Rest\Client\License\Api\LicenseServiceApi; -class LicenseModule +class LicenseModule { /** @var LicenseServiceApi */ protected $LicenseServiceApi; @@ -22,9 +22,9 @@ class LicenseModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->LicenseServiceApi = new LicenseServiceApi($client, $config, $selector, $host_index); @@ -34,7 +34,7 @@ public function __construct( * Gets LicenseServiceApi api. * @return LicenseServiceApi */ - public function getLicenseServiceApi() + public function getLicenseServiceApi() { return $this->LicenseServiceApi; } diff --git a/src/License/Model/ErrorError.php b/src/License/Model/ErrorError.php index 1fce7c9..b05cb62 100644 --- a/src/License/Model/ErrorError.php +++ b/src/License/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/ErrorWarning.php b/src/License/Model/ErrorWarning.php index 2634335..b2a5240 100644 --- a/src/License/Model/ErrorWarning.php +++ b/src/License/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseCreateLicenseResponseData.php b/src/License/Model/LicenseCreateLicenseResponseData.php index 842584b..35a2ea9 100644 --- a/src/License/Model/LicenseCreateLicenseResponseData.php +++ b/src/License/Model/LicenseCreateLicenseResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_keys'] = isset($data['attached_keys']) ? $data['attached_keys'] : null; $this->container['key_id'] = isset($data['key_id']) ? $data['key_id'] : null; diff --git a/src/License/Model/LicenseCreatePleskLicenseRequest.php b/src/License/Model/LicenseCreatePleskLicenseRequest.php index 41c05af..7ce99e0 100644 --- a/src/License/Model/LicenseCreatePleskLicenseRequest.php +++ b/src/License/Model/LicenseCreatePleskLicenseRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_keys'] = isset($data['attached_keys']) ? $data['attached_keys'] : null; $this->container['comment'] = isset($data['comment']) ? $data['comment'] : null; diff --git a/src/License/Model/LicenseCreatePleskLicenseResponse.php b/src/License/Model/LicenseCreatePleskLicenseResponse.php index 21ed871..5ae824a 100644 --- a/src/License/Model/LicenseCreatePleskLicenseResponse.php +++ b/src/License/Model/LicenseCreatePleskLicenseResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseCreateVirtuozzoLicenseRequest.php b/src/License/Model/LicenseCreateVirtuozzoLicenseRequest.php index 7889d65..e07ae52 100644 --- a/src/License/Model/LicenseCreateVirtuozzoLicenseRequest.php +++ b/src/License/Model/LicenseCreateVirtuozzoLicenseRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -203,9 +203,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -220,7 +220,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_keys'] = isset($data['attached_keys']) ? $data['attached_keys'] : null; $this->container['comment'] = isset($data['comment']) ? $data['comment'] : null; diff --git a/src/License/Model/LicenseCreateVirtuozzoLicenseResponse.php b/src/License/Model/LicenseCreateVirtuozzoLicenseResponse.php index b4b00c9..58ec394 100644 --- a/src/License/Model/LicenseCreateVirtuozzoLicenseResponse.php +++ b/src/License/Model/LicenseCreateVirtuozzoLicenseResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseDeleteLicenseResponse.php b/src/License/Model/LicenseDeleteLicenseResponse.php index bb242ab..d141c36 100644 --- a/src/License/Model/LicenseDeleteLicenseResponse.php +++ b/src/License/Model/LicenseDeleteLicenseResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseDeleteLicenseResponseData.php b/src/License/Model/LicenseDeleteLicenseResponseData.php index 02b3024..6d79367 100644 --- a/src/License/Model/LicenseDeleteLicenseResponseData.php +++ b/src/License/Model/LicenseDeleteLicenseResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/License/Model/LicenseExtendedLicense.php b/src/License/Model/LicenseExtendedLicense.php index 3b121bc..673c904 100644 --- a/src/License/Model/LicenseExtendedLicense.php +++ b/src/License/Model/LicenseExtendedLicense.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -253,9 +253,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -270,7 +270,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activation_code'] = isset($data['activation_code']) ? $data['activation_code'] : null; $this->container['billing_type'] = isset($data['billing_type']) ? $data['billing_type'] : null; diff --git a/src/License/Model/LicenseGetLicenseKeyResponse.php b/src/License/Model/LicenseGetLicenseKeyResponse.php index 8fa2c89..6111375 100644 --- a/src/License/Model/LicenseGetLicenseKeyResponse.php +++ b/src/License/Model/LicenseGetLicenseKeyResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseGetLicenseResponse.php b/src/License/Model/LicenseGetLicenseResponse.php index 8bb62e5..e8174a6 100644 --- a/src/License/Model/LicenseGetLicenseResponse.php +++ b/src/License/Model/LicenseGetLicenseResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseKey.php b/src/License/Model/LicenseKey.php index c4088fe..d127d4d 100644 --- a/src/License/Model/LicenseKey.php +++ b/src/License/Model/LicenseKey.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['item'] = isset($data['item']) ? $data['item'] : null; $this->container['product'] = isset($data['product']) ? $data['product'] : null; diff --git a/src/License/Model/LicenseLicenseItem.php b/src/License/Model/LicenseLicenseItem.php index 7f31f31..7551633 100644 --- a/src/License/Model/LicenseLicenseItem.php +++ b/src/License/Model/LicenseLicenseItem.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['item'] = isset($data['item']) ? $data['item'] : null; $this->container['product'] = isset($data['product']) ? $data['product'] : null; diff --git a/src/License/Model/LicenseLicenseKey.php b/src/License/Model/LicenseLicenseKey.php index 973d103..2f64381 100644 --- a/src/License/Model/LicenseLicenseKey.php +++ b/src/License/Model/LicenseLicenseKey.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['key'] = isset($data['key']) ? $data['key'] : null; } diff --git a/src/License/Model/LicenseLicenseWithPriceVersion.php b/src/License/Model/LicenseLicenseWithPriceVersion.php index 30230c9..6d50de2 100644 --- a/src/License/Model/LicenseLicenseWithPriceVersion.php +++ b/src/License/Model/LicenseLicenseWithPriceVersion.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -233,9 +233,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -250,7 +250,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activation_code'] = isset($data['activation_code']) ? $data['activation_code'] : null; $this->container['billing_type'] = isset($data['billing_type']) ? $data['billing_type'] : null; diff --git a/src/License/Model/LicenseListItemsOrderBy.php b/src/License/Model/LicenseListItemsOrderBy.php index 7e7bc7b..fde5400 100644 --- a/src/License/Model/LicenseListItemsOrderBy.php +++ b/src/License/Model/LicenseListItemsOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expiration_date'] = isset($data['expiration_date']) ? $data['expiration_date'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/License/Model/LicenseListItemsResponse.php b/src/License/Model/LicenseListItemsResponse.php index b0ff653..e14c7f2 100644 --- a/src/License/Model/LicenseListItemsResponse.php +++ b/src/License/Model/LicenseListItemsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseListItemsResponseData.php b/src/License/Model/LicenseListItemsResponseData.php index 78245f5..4caf44a 100644 --- a/src/License/Model/LicenseListItemsResponseData.php +++ b/src/License/Model/LicenseListItemsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/License/Model/LicenseListLicensesOrderBy.php b/src/License/Model/LicenseListLicensesOrderBy.php index 8b37299..70a2ea1 100644 --- a/src/License/Model/LicenseListLicensesOrderBy.php +++ b/src/License/Model/LicenseListLicensesOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expiration_date'] = isset($data['expiration_date']) ? $data['expiration_date'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/License/Model/LicenseListLicensesResponse.php b/src/License/Model/LicenseListLicensesResponse.php index d2e3179..691eaa3 100644 --- a/src/License/Model/LicenseListLicensesResponse.php +++ b/src/License/Model/LicenseListLicensesResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseListLicensesResponseData.php b/src/License/Model/LicenseListLicensesResponseData.php index 38bd418..080cb72 100644 --- a/src/License/Model/LicenseListLicensesResponseData.php +++ b/src/License/Model/LicenseListLicensesResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/License/Model/LicenseListLicensesWithPriceVersionResponse.php b/src/License/Model/LicenseListLicensesWithPriceVersionResponse.php index e23597e..badbd01 100644 --- a/src/License/Model/LicenseListLicensesWithPriceVersionResponse.php +++ b/src/License/Model/LicenseListLicensesWithPriceVersionResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseListLicensesWithPriceVersionResponseData.php b/src/License/Model/LicenseListLicensesWithPriceVersionResponseData.php index 2d5037f..649fe6f 100644 --- a/src/License/Model/LicenseListLicensesWithPriceVersionResponseData.php +++ b/src/License/Model/LicenseListLicensesWithPriceVersionResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/License/Model/LicenseResetHwidRequest.php b/src/License/Model/LicenseResetHwidRequest.php index 67fd66e..70f8028 100644 --- a/src/License/Model/LicenseResetHwidRequest.php +++ b/src/License/Model/LicenseResetHwidRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['key_id'] = isset($data['key_id']) ? $data['key_id'] : null; $this->container['product'] = isset($data['product']) ? $data['product'] : null; diff --git a/src/License/Model/LicenseResetHwidResponse.php b/src/License/Model/LicenseResetHwidResponse.php index a49265e..87c62d8 100644 --- a/src/License/Model/LicenseResetHwidResponse.php +++ b/src/License/Model/LicenseResetHwidResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseResetHwidResponseData.php b/src/License/Model/LicenseResetHwidResponseData.php index 8f3ab23..f181464 100644 --- a/src/License/Model/LicenseResetHwidResponseData.php +++ b/src/License/Model/LicenseResetHwidResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/License/Model/LicenseUpdateLicenseResponse.php b/src/License/Model/LicenseUpdateLicenseResponse.php index 147a14e..2895212 100644 --- a/src/License/Model/LicenseUpdateLicenseResponse.php +++ b/src/License/Model/LicenseUpdateLicenseResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/License/Model/LicenseUpdateLicenseResponseData.php b/src/License/Model/LicenseUpdateLicenseResponseData.php index f43b5dd..a8c09f4 100644 --- a/src/License/Model/LicenseUpdateLicenseResponseData.php +++ b/src/License/Model/LicenseUpdateLicenseResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/License/Model/LicenseUpdatePleskLicenseRequest.php b/src/License/Model/LicenseUpdatePleskLicenseRequest.php index ba120a1..6ed05a3 100644 --- a/src/License/Model/LicenseUpdatePleskLicenseRequest.php +++ b/src/License/Model/LicenseUpdatePleskLicenseRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -208,9 +208,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -225,7 +225,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_keys'] = isset($data['attached_keys']) ? $data['attached_keys'] : null; $this->container['comment'] = isset($data['comment']) ? $data['comment'] : null; diff --git a/src/License/Model/LicenseUpdateVirtuozzoLicenseRequest.php b/src/License/Model/LicenseUpdateVirtuozzoLicenseRequest.php index f8174cb..6811f2d 100644 --- a/src/License/Model/LicenseUpdateVirtuozzoLicenseRequest.php +++ b/src/License/Model/LicenseUpdateVirtuozzoLicenseRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -213,9 +213,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -230,7 +230,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_keys'] = isset($data['attached_keys']) ? $data['attached_keys'] : null; $this->container['comment'] = isset($data['comment']) ? $data['comment'] : null; diff --git a/src/License/Model/LicenselicenseLicense.php b/src/License/Model/LicenselicenseLicense.php index 9a48899..59335f4 100644 --- a/src/License/Model/LicenselicenseLicense.php +++ b/src/License/Model/LicenselicenseLicense.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -238,9 +238,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -255,7 +255,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activation_code'] = isset($data['activation_code']) ? $data['activation_code'] : null; $this->container['billing_type'] = isset($data['billing_type']) ? $data['billing_type'] : null; diff --git a/src/Person/Api/ContactServiceApi.php b/src/Person/Api/ContactServiceApi.php index 4db3d1e..6e547b8 100644 --- a/src/Person/Api/ContactServiceApi.php +++ b/src/Person/Api/ContactServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ContactServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/CustomerApi.php b/src/Person/Api/CustomerApi.php index 42f2174..259abdd 100644 --- a/src/Person/Api/CustomerApi.php +++ b/src/Person/Api/CustomerApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class CustomerApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/EmailVerificationApi.php b/src/Person/Api/EmailVerificationApi.php index 3f2d539..f5e1ffc 100644 --- a/src/Person/Api/EmailVerificationApi.php +++ b/src/Person/Api/EmailVerificationApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class EmailVerificationApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/PromoMessageServiceApi.php b/src/Person/Api/PromoMessageServiceApi.php index db9deab..cb6bd6b 100644 --- a/src/Person/Api/PromoMessageServiceApi.php +++ b/src/Person/Api/PromoMessageServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class PromoMessageServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/ResellerServiceApi.php b/src/Person/Api/ResellerServiceApi.php index 5aac9d3..63b3759 100644 --- a/src/Person/Api/ResellerServiceApi.php +++ b/src/Person/Api/ResellerServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ResellerServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/SettingsApi.php b/src/Person/Api/SettingsApi.php index d291378..07f48a7 100644 --- a/src/Person/Api/SettingsApi.php +++ b/src/Person/Api/SettingsApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class SettingsApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Api/StatisticsApi.php b/src/Person/Api/StatisticsApi.php index 6147d6e..71b5428 100644 --- a/src/Person/Api/StatisticsApi.php +++ b/src/Person/Api/StatisticsApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class StatisticsApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Person/Model/ContactAdditionalData.php b/src/Person/Model/ContactAdditionalData.php index 528ee42..5e3edf1 100644 --- a/src/Person/Model/ContactAdditionalData.php +++ b/src/Person/Model/ContactAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['birth_city'] = isset($data['birth_city']) ? $data['birth_city'] : null; $this->container['birth_date'] = isset($data['birth_date']) ? $data['birth_date'] : null; diff --git a/src/Person/Model/ContactAddress.php b/src/Person/Model/ContactAddress.php index 26e1cf5..97a8b9b 100644 --- a/src/Person/Model/ContactAddress.php +++ b/src/Person/Model/ContactAddress.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['city'] = isset($data['city']) ? $data['city'] : null; $this->container['country'] = isset($data['country']) ? $data['country'] : null; diff --git a/src/Person/Model/ContactClientIpList.php b/src/Person/Model/ContactClientIpList.php index 24ab381..e440bc7 100644 --- a/src/Person/Model/ContactClientIpList.php +++ b/src/Person/Model/ContactClientIpList.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['allow'] = isset($data['allow']) ? $data['allow'] : null; $this->container['deny'] = isset($data['deny']) ? $data['deny'] : null; diff --git a/src/Person/Model/ContactCreateContactRequest.php b/src/Person/Model/ContactCreateContactRequest.php index 3e0af3f..45361a6 100644 --- a/src/Person/Model/ContactCreateContactRequest.php +++ b/src/Person/Model/ContactCreateContactRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -238,9 +238,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -255,7 +255,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/ContactCreateContactResponse.php b/src/Person/Model/ContactCreateContactResponse.php index 3f8e255..597e556 100644 --- a/src/Person/Model/ContactCreateContactResponse.php +++ b/src/Person/Model/ContactCreateContactResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ContactCreateContactResponseData.php b/src/Person/Model/ContactCreateContactResponseData.php index 265fd0e..98841bd 100644 --- a/src/Person/Model/ContactCreateContactResponseData.php +++ b/src/Person/Model/ContactCreateContactResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['token'] = isset($data['token']) ? $data['token'] : null; diff --git a/src/Person/Model/ContactDeleteContactResponse.php b/src/Person/Model/ContactDeleteContactResponse.php index f40a0d0..d406ccd 100644 --- a/src/Person/Model/ContactDeleteContactResponse.php +++ b/src/Person/Model/ContactDeleteContactResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ContactDeleteContactResponseData.php b/src/Person/Model/ContactDeleteContactResponseData.php index 87312d3..6ceca86 100644 --- a/src/Person/Model/ContactDeleteContactResponseData.php +++ b/src/Person/Model/ContactDeleteContactResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/ContactGetContactResponse.php b/src/Person/Model/ContactGetContactResponse.php index daf4841..84e990c 100644 --- a/src/Person/Model/ContactGetContactResponse.php +++ b/src/Person/Model/ContactGetContactResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ContactListContactsResponse.php b/src/Person/Model/ContactListContactsResponse.php index 22264c4..27ec12c 100644 --- a/src/Person/Model/ContactListContactsResponse.php +++ b/src/Person/Model/ContactListContactsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ContactListContactsResponseData.php b/src/Person/Model/ContactListContactsResponseData.php index cc8bd62..4c19391 100644 --- a/src/Person/Model/ContactListContactsResponseData.php +++ b/src/Person/Model/ContactListContactsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/ContactName.php b/src/Person/Model/ContactName.php index 7749993..ff7c2b6 100644 --- a/src/Person/Model/ContactName.php +++ b/src/Person/Model/ContactName.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['first_name'] = isset($data['first_name']) ? $data['first_name'] : null; $this->container['full_name'] = isset($data['full_name']) ? $data['full_name'] : null; diff --git a/src/Person/Model/ContactPhone.php b/src/Person/Model/ContactPhone.php index e7e7a3f..8a61556 100644 --- a/src/Person/Model/ContactPhone.php +++ b/src/Person/Model/ContactPhone.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['area_code'] = isset($data['area_code']) ? $data['area_code'] : null; $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; diff --git a/src/Person/Model/ContactUpdateContactRequest.php b/src/Person/Model/ContactUpdateContactRequest.php index 3b609c0..fda2c4a 100644 --- a/src/Person/Model/ContactUpdateContactRequest.php +++ b/src/Person/Model/ContactUpdateContactRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -258,9 +258,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -275,7 +275,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/ContactUpdateContactResponse.php b/src/Person/Model/ContactUpdateContactResponse.php index ded5d29..709eebc 100644 --- a/src/Person/Model/ContactUpdateContactResponse.php +++ b/src/Person/Model/ContactUpdateContactResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ContactUpdateContactResponseData.php b/src/Person/Model/ContactUpdateContactResponseData.php index 6681f48..59b5714 100644 --- a/src/Person/Model/ContactUpdateContactResponseData.php +++ b/src/Person/Model/ContactUpdateContactResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/CustomerCreateCustomerRequest.php b/src/Person/Model/CustomerCreateCustomerRequest.php index 302f395..eb00172 100644 --- a/src/Person/Model/CustomerCreateCustomerRequest.php +++ b/src/Person/Model/CustomerCreateCustomerRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -218,9 +218,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -235,7 +235,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/CustomerCreateCustomerResponse.php b/src/Person/Model/CustomerCreateCustomerResponse.php index 13a8dbd..ce64279 100644 --- a/src/Person/Model/CustomerCreateCustomerResponse.php +++ b/src/Person/Model/CustomerCreateCustomerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/CustomerCreateCustomerResponseData.php b/src/Person/Model/CustomerCreateCustomerResponseData.php index e19ff19..93f28d2 100644 --- a/src/Person/Model/CustomerCreateCustomerResponseData.php +++ b/src/Person/Model/CustomerCreateCustomerResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['handle'] = isset($data['handle']) ? $data['handle'] : null; } diff --git a/src/Person/Model/CustomerCustomerAdditionalData.php b/src/Person/Model/CustomerCustomerAdditionalData.php index 590a76a..57a1b5b 100644 --- a/src/Person/Model/CustomerCustomerAdditionalData.php +++ b/src/Person/Model/CustomerCustomerAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -253,9 +253,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -270,7 +270,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['attached_files'] = isset($data['attached_files']) ? $data['attached_files'] : null; $this->container['birth_address'] = isset($data['birth_address']) ? $data['birth_address'] : null; diff --git a/src/Person/Model/CustomerDeleteCustomerResponse.php b/src/Person/Model/CustomerDeleteCustomerResponse.php index 1b5dad2..38f8d8a 100644 --- a/src/Person/Model/CustomerDeleteCustomerResponse.php +++ b/src/Person/Model/CustomerDeleteCustomerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/CustomerDeleteCustomerResponseData.php b/src/Person/Model/CustomerDeleteCustomerResponseData.php index 7bd2f28..4625193 100644 --- a/src/Person/Model/CustomerDeleteCustomerResponseData.php +++ b/src/Person/Model/CustomerDeleteCustomerResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/CustomerExtensionAdditionalData.php b/src/Person/Model/CustomerExtensionAdditionalData.php index 10e2409..6baae47 100644 --- a/src/Person/Model/CustomerExtensionAdditionalData.php +++ b/src/Person/Model/CustomerExtensionAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['data'] = isset($data['data']) ? $data['data'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Person/Model/CustomerExtensionData.php b/src/Person/Model/CustomerExtensionData.php index 5bd6ae7..9a31ec2 100644 --- a/src/Person/Model/CustomerExtensionData.php +++ b/src/Person/Model/CustomerExtensionData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -343,9 +343,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -360,7 +360,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['admin_type'] = isset($data['admin_type']) ? $data['admin_type'] : null; $this->container['applicant_purpose'] = isset($data['applicant_purpose']) ? $data['applicant_purpose'] : null; diff --git a/src/Person/Model/CustomerFax.php b/src/Person/Model/CustomerFax.php index b744e5a..d2bd170 100644 --- a/src/Person/Model/CustomerFax.php +++ b/src/Person/Model/CustomerFax.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['area_code'] = isset($data['area_code']) ? $data['area_code'] : null; $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; diff --git a/src/Person/Model/CustomerFile.php b/src/Person/Model/CustomerFile.php index 5d37ce0..fbc3783 100644 --- a/src/Person/Model/CustomerFile.php +++ b/src/Person/Model/CustomerFile.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['doc_type'] = isset($data['doc_type']) ? $data['doc_type'] : null; diff --git a/src/Person/Model/CustomerGetCustomerResponse.php b/src/Person/Model/CustomerGetCustomerResponse.php index 5f99c22..a420582 100644 --- a/src/Person/Model/CustomerGetCustomerResponse.php +++ b/src/Person/Model/CustomerGetCustomerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/CustomerGetCustomerResponseData.php b/src/Person/Model/CustomerGetCustomerResponseData.php index ba63e63..4d5d10a 100644 --- a/src/Person/Model/CustomerGetCustomerResponseData.php +++ b/src/Person/Model/CustomerGetCustomerResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -258,9 +258,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -275,7 +275,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/CustomerListCustomersResponse.php b/src/Person/Model/CustomerListCustomersResponse.php index 38949ef..3a1affa 100644 --- a/src/Person/Model/CustomerListCustomersResponse.php +++ b/src/Person/Model/CustomerListCustomersResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/CustomerListCustomersResponseData.php b/src/Person/Model/CustomerListCustomersResponseData.php index 235ff06..d6d0654 100644 --- a/src/Person/Model/CustomerListCustomersResponseData.php +++ b/src/Person/Model/CustomerListCustomersResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/CustomerListCustomersResponseDataResults.php b/src/Person/Model/CustomerListCustomersResponseDataResults.php index 7b625c6..813adaa 100644 --- a/src/Person/Model/CustomerListCustomersResponseDataResults.php +++ b/src/Person/Model/CustomerListCustomersResponseDataResults.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -243,9 +243,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -260,7 +260,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/CustomerTags.php b/src/Person/Model/CustomerTags.php index da2899e..a217847 100644 --- a/src/Person/Model/CustomerTags.php +++ b/src/Person/Model/CustomerTags.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['key'] = isset($data['key']) ? $data['key'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/Person/Model/CustomerUpdateCustomerRequest.php b/src/Person/Model/CustomerUpdateCustomerRequest.php index 908eb9e..40e92fa 100644 --- a/src/Person/Model/CustomerUpdateCustomerRequest.php +++ b/src/Person/Model/CustomerUpdateCustomerRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -213,9 +213,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -230,7 +230,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/CustomerUpdateCustomerResponse.php b/src/Person/Model/CustomerUpdateCustomerResponse.php index 051e9f9..b80e39e 100644 --- a/src/Person/Model/CustomerUpdateCustomerResponse.php +++ b/src/Person/Model/CustomerUpdateCustomerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/CustomerUpdateCustomerResponseData.php b/src/Person/Model/CustomerUpdateCustomerResponseData.php index 661f6a4..6d713ce 100644 --- a/src/Person/Model/CustomerUpdateCustomerResponseData.php +++ b/src/Person/Model/CustomerUpdateCustomerResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/EmailDomainEmailVerification.php b/src/Person/Model/EmailDomainEmailVerification.php index ce99c0c..1dfaf61 100644 --- a/src/Person/Model/EmailDomainEmailVerification.php +++ b/src/Person/Model/EmailDomainEmailVerification.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['domain'] = isset($data['domain']) ? $data['domain'] : null; diff --git a/src/Person/Model/EmailListDomainVerificationsResponse.php b/src/Person/Model/EmailListDomainVerificationsResponse.php index 09bd9cc..c941a3b 100644 --- a/src/Person/Model/EmailListDomainVerificationsResponse.php +++ b/src/Person/Model/EmailListDomainVerificationsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/EmailListDomainVerificationsResponseData.php b/src/Person/Model/EmailListDomainVerificationsResponseData.php index 9effc72..9019367 100644 --- a/src/Person/Model/EmailListDomainVerificationsResponseData.php +++ b/src/Person/Model/EmailListDomainVerificationsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/EmailRestartEmailVerificationRequest.php b/src/Person/Model/EmailRestartEmailVerificationRequest.php index 17a6f21..2d158f8 100644 --- a/src/Person/Model/EmailRestartEmailVerificationRequest.php +++ b/src/Person/Model/EmailRestartEmailVerificationRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['language'] = isset($data['language']) ? $data['language'] : null; diff --git a/src/Person/Model/EmailRestartEmailVerificationResponse.php b/src/Person/Model/EmailRestartEmailVerificationResponse.php index bb125de..10977a8 100644 --- a/src/Person/Model/EmailRestartEmailVerificationResponse.php +++ b/src/Person/Model/EmailRestartEmailVerificationResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/EmailRestartEmailVerificationResponseData.php b/src/Person/Model/EmailRestartEmailVerificationResponseData.php index 88ed44c..bfebfd6 100644 --- a/src/Person/Model/EmailRestartEmailVerificationResponseData.php +++ b/src/Person/Model/EmailRestartEmailVerificationResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/EmailStartEmailVerificationRequest.php b/src/Person/Model/EmailStartEmailVerificationRequest.php index d3c67bf..c549d3a 100644 --- a/src/Person/Model/EmailStartEmailVerificationRequest.php +++ b/src/Person/Model/EmailStartEmailVerificationRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['email'] = isset($data['email']) ? $data['email'] : null; $this->container['handle'] = isset($data['handle']) ? $data['handle'] : null; diff --git a/src/Person/Model/EmailStartEmailVerificationResponse.php b/src/Person/Model/EmailStartEmailVerificationResponse.php index aadf780..896c30e 100644 --- a/src/Person/Model/EmailStartEmailVerificationResponse.php +++ b/src/Person/Model/EmailStartEmailVerificationResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/EmailStartEmailVerificationResponseData.php b/src/Person/Model/EmailStartEmailVerificationResponseData.php index d5c49bc..e207d5f 100644 --- a/src/Person/Model/EmailStartEmailVerificationResponseData.php +++ b/src/Person/Model/EmailStartEmailVerificationResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Person/Model/EmailVerificationRecipient.php b/src/Person/Model/EmailVerificationRecipient.php index f110b3e..fa26c4d 100644 --- a/src/Person/Model/EmailVerificationRecipient.php +++ b/src/Person/Model/EmailVerificationRecipient.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['to'] = isset($data['to']) ? $data['to'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; diff --git a/src/Person/Model/ErrorError.php b/src/Person/Model/ErrorError.php index b04ec7c..9d207e7 100644 --- a/src/Person/Model/ErrorError.php +++ b/src/Person/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ErrorWarning.php b/src/Person/Model/ErrorWarning.php index ebaa3fc..f0ed548 100644 --- a/src/Person/Model/ErrorWarning.php +++ b/src/Person/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/PersoncontactContact.php b/src/Person/Model/PersoncontactContact.php index ef545b4..cf64544 100644 --- a/src/Person/Model/PersoncontactContact.php +++ b/src/Person/Model/PersoncontactContact.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -278,9 +278,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -295,7 +295,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/PromoMessageListPromoMessagesResponse.php b/src/Person/Model/PromoMessageListPromoMessagesResponse.php index d5f5037..0db4d17 100644 --- a/src/Person/Model/PromoMessageListPromoMessagesResponse.php +++ b/src/Person/Model/PromoMessageListPromoMessagesResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/PromoMessageListPromoMessagesResponseData.php b/src/Person/Model/PromoMessageListPromoMessagesResponseData.php index ece8487..ff22e3c 100644 --- a/src/Person/Model/PromoMessageListPromoMessagesResponseData.php +++ b/src/Person/Model/PromoMessageListPromoMessagesResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/PromoMessagePromoMessage.php b/src/Person/Model/PromoMessagePromoMessage.php index 555109b..8a2254c 100644 --- a/src/Person/Model/PromoMessagePromoMessage.php +++ b/src/Person/Model/PromoMessagePromoMessage.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['html'] = isset($data['html']) ? $data['html'] : null; $this->container['plain_text'] = isset($data['plain_text']) ? $data['plain_text'] : null; diff --git a/src/Person/Model/ResellerGetResellerResponse.php b/src/Person/Model/ResellerGetResellerResponse.php index 9aeff9a..468252a 100644 --- a/src/Person/Model/ResellerGetResellerResponse.php +++ b/src/Person/Model/ResellerGetResellerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ResellerReseller.php b/src/Person/Model/ResellerReseller.php index 5428e34..b02f775 100644 --- a/src/Person/Model/ResellerReseller.php +++ b/src/Person/Model/ResellerReseller.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -253,9 +253,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -270,7 +270,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/ResellerResellerAdditionalData.php b/src/Person/Model/ResellerResellerAdditionalData.php index dec1e10..50f73bb 100644 --- a/src/Person/Model/ResellerResellerAdditionalData.php +++ b/src/Person/Model/ResellerResellerAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['cif_nif_number'] = isset($data['cif_nif_number']) ? $data['cif_nif_number'] : null; $this->container['gstin'] = isset($data['gstin']) ? $data['gstin'] : null; diff --git a/src/Person/Model/ResellerSettings.php b/src/Person/Model/ResellerSettings.php index 70bb7df..d78b71f 100644 --- a/src/Person/Model/ResellerSettings.php +++ b/src/Person/Model/ResellerSettings.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -358,9 +358,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -375,7 +375,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['av_handle'] = isset($data['av_handle']) ? $data['av_handle'] : null; $this->container['claims_confirm_url'] = isset($data['claims_confirm_url']) ? $data['claims_confirm_url'] : null; diff --git a/src/Person/Model/ResellerStatistics.php b/src/Person/Model/ResellerStatistics.php index c3bef0b..8665661 100644 --- a/src/Person/Model/ResellerStatistics.php +++ b/src/Person/Model/ResellerStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['customer'] = isset($data['customer']) ? $data['customer'] : null; diff --git a/src/Person/Model/ResellerUpdateResellerRequest.php b/src/Person/Model/ResellerUpdateResellerRequest.php index 1f21e29..b867493 100644 --- a/src/Person/Model/ResellerUpdateResellerRequest.php +++ b/src/Person/Model/ResellerUpdateResellerRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -228,9 +228,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -245,7 +245,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; $this->container['address'] = isset($data['address']) ? $data['address'] : null; diff --git a/src/Person/Model/ResellerUpdateResellerResponse.php b/src/Person/Model/ResellerUpdateResellerResponse.php index effe751..ee8a291 100644 --- a/src/Person/Model/ResellerUpdateResellerResponse.php +++ b/src/Person/Model/ResellerUpdateResellerResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/ResellerUpdateResellerResponseData.php b/src/Person/Model/ResellerUpdateResellerResponseData.php index e169c26..a6b202c 100644 --- a/src/Person/Model/ResellerUpdateResellerResponseData.php +++ b/src/Person/Model/ResellerUpdateResellerResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/Person/Model/SettingsGetSettingsResponse.php b/src/Person/Model/SettingsGetSettingsResponse.php index 61fd24d..708fd3f 100644 --- a/src/Person/Model/SettingsGetSettingsResponse.php +++ b/src/Person/Model/SettingsGetSettingsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/SettingsGetSettingsResponseData.php b/src/Person/Model/SettingsGetSettingsResponseData.php index 1654fab..6496445 100644 --- a/src/Person/Model/SettingsGetSettingsResponseData.php +++ b/src/Person/Model/SettingsGetSettingsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -363,9 +363,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -380,7 +380,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['av_handle'] = isset($data['av_handle']) ? $data['av_handle'] : null; $this->container['claims_confirm_url'] = isset($data['claims_confirm_url']) ? $data['claims_confirm_url'] : null; diff --git a/src/Person/Model/SettingsPaymentMethodLimit.php b/src/Person/Model/SettingsPaymentMethodLimit.php index 53dad97..9987c1e 100644 --- a/src/Person/Model/SettingsPaymentMethodLimit.php +++ b/src/Person/Model/SettingsPaymentMethodLimit.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -343,9 +343,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -360,7 +360,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['aud'] = isset($data['aud']) ? $data['aud'] : null; $this->container['bgn'] = isset($data['bgn']) ? $data['bgn'] : null; diff --git a/src/Person/Model/SettingsPaymentMethodLimits.php b/src/Person/Model/SettingsPaymentMethodLimits.php index a4fd6d0..0173b62 100644 --- a/src/Person/Model/SettingsPaymentMethodLimits.php +++ b/src/Person/Model/SettingsPaymentMethodLimits.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['maximum'] = isset($data['maximum']) ? $data['maximum'] : null; $this->container['minimum'] = isset($data['minimum']) ? $data['minimum'] : null; diff --git a/src/Person/Model/SettingsPaymentMethodSettings.php b/src/Person/Model/SettingsPaymentMethodSettings.php index dbbc4ea..5eb4753 100644 --- a/src/Person/Model/SettingsPaymentMethodSettings.php +++ b/src/Person/Model/SettingsPaymentMethodSettings.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['limit'] = isset($data['limit']) ? $data['limit'] : null; $this->container['transaction_fee'] = isset($data['transaction_fee']) ? $data['transaction_fee'] : null; diff --git a/src/Person/Model/SettingsPaymentMethods.php b/src/Person/Model/SettingsPaymentMethods.php index 4f335a4..c958f6a 100644 --- a/src/Person/Model/SettingsPaymentMethods.php +++ b/src/Person/Model/SettingsPaymentMethods.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['settings'] = isset($data['settings']) ? $data['settings'] : null; diff --git a/src/Person/Model/SettingsSignedContracts.php b/src/Person/Model/SettingsSignedContracts.php index 7da6149..0e98925 100644 --- a/src/Person/Model/SettingsSignedContracts.php +++ b/src/Person/Model/SettingsSignedContracts.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -198,9 +198,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -215,7 +215,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['contents'] = isset($data['contents']) ? $data['contents'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Person/Model/SettingsTacContract.php b/src/Person/Model/SettingsTacContract.php index 770068e..ec9e92d 100644 --- a/src/Person/Model/SettingsTacContract.php +++ b/src/Person/Model/SettingsTacContract.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['is_signed'] = isset($data['is_signed']) ? $data['is_signed'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Person/Model/SettingsTransactionFee.php b/src/Person/Model/SettingsTransactionFee.php index 98ade00..0cdd1cc 100644 --- a/src/Person/Model/SettingsTransactionFee.php +++ b/src/Person/Model/SettingsTransactionFee.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bank'] = isset($data['bank']) ? $data['bank'] : null; $this->container['credit_card'] = isset($data['credit_card']) ? $data['credit_card'] : null; diff --git a/src/Person/Model/StatisticsCurrencyStatistics.php b/src/Person/Model/StatisticsCurrencyStatistics.php index 47baac5..8bf8fdb 100644 --- a/src/Person/Model/StatisticsCurrencyStatistics.php +++ b/src/Person/Model/StatisticsCurrencyStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['modified'] = isset($data['modified']) ? $data['modified'] : null; } diff --git a/src/Person/Model/StatisticsCustomerStatistics.php b/src/Person/Model/StatisticsCustomerStatistics.php index 8651578..f8856a2 100644 --- a/src/Person/Model/StatisticsCustomerStatistics.php +++ b/src/Person/Model/StatisticsCustomerStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['modified'] = isset($data['modified']) ? $data['modified'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/StatisticsDnsStatistics.php b/src/Person/Model/StatisticsDnsStatistics.php index 8f0b36d..03445fc 100644 --- a/src/Person/Model/StatisticsDnsStatistics.php +++ b/src/Person/Model/StatisticsDnsStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['total'] = isset($data['total']) ? $data['total'] : null; } diff --git a/src/Person/Model/StatisticsDomainStatistics.php b/src/Person/Model/StatisticsDomainStatistics.php index abc701b..bb056cf 100644 --- a/src/Person/Model/StatisticsDomainStatistics.php +++ b/src/Person/Model/StatisticsDomainStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['by_status'] = isset($data['by_status']) ? $data['by_status'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/StatisticsDomainStatisticsByStatus.php b/src/Person/Model/StatisticsDomainStatisticsByStatus.php index be40794..220c402 100644 --- a/src/Person/Model/StatisticsDomainStatisticsByStatus.php +++ b/src/Person/Model/StatisticsDomainStatisticsByStatus.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['act'] = isset($data['act']) ? $data['act'] : null; $this->container['fai'] = isset($data['fai']) ? $data['fai'] : null; diff --git a/src/Person/Model/StatisticsGetStatisticsResponse.php b/src/Person/Model/StatisticsGetStatisticsResponse.php index 8241fb4..b2aa98c 100644 --- a/src/Person/Model/StatisticsGetStatisticsResponse.php +++ b/src/Person/Model/StatisticsGetStatisticsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Person/Model/StatisticsGetStatisticsResponseData.php b/src/Person/Model/StatisticsGetStatisticsResponseData.php index 44f3001..da7d81f 100644 --- a/src/Person/Model/StatisticsGetStatisticsResponseData.php +++ b/src/Person/Model/StatisticsGetStatisticsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['customer'] = isset($data['customer']) ? $data['customer'] : null; diff --git a/src/Person/Model/StatisticsLicenseStatistics.php b/src/Person/Model/StatisticsLicenseStatistics.php index b17c14f..4aa3de9 100644 --- a/src/Person/Model/StatisticsLicenseStatistics.php +++ b/src/Person/Model/StatisticsLicenseStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['total'] = isset($data['total']) ? $data['total'] : null; } diff --git a/src/Person/Model/StatisticsSpamExpertsStatistics.php b/src/Person/Model/StatisticsSpamExpertsStatistics.php index af5de41..fa508c9 100644 --- a/src/Person/Model/StatisticsSpamExpertsStatistics.php +++ b/src/Person/Model/StatisticsSpamExpertsStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -208,9 +208,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -225,7 +225,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['activated_at'] = isset($data['activated_at']) ? $data['activated_at'] : null; $this->container['created_at'] = isset($data['created_at']) ? $data['created_at'] : null; diff --git a/src/Person/Model/StatisticsSslStatistics.php b/src/Person/Model/StatisticsSslStatistics.php index ace3f38..bef7a79 100644 --- a/src/Person/Model/StatisticsSslStatistics.php +++ b/src/Person/Model/StatisticsSslStatistics.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['by_status'] = isset($data['by_status']) ? $data['by_status'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Person/Model/StatisticsSslStatisticsByStatus.php b/src/Person/Model/StatisticsSslStatisticsByStatus.php index 93d0873..5bc02e2 100644 --- a/src/Person/Model/StatisticsSslStatisticsByStatus.php +++ b/src/Person/Model/StatisticsSslStatisticsByStatus.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['act'] = isset($data['act']) ? $data['act'] : null; $this->container['fai'] = isset($data['fai']) ? $data['fai'] : null; diff --git a/src/Person/PersonModule.php b/src/Person/PersonModule.php index 834725d..401ef86 100644 --- a/src/Person/PersonModule.php +++ b/src/Person/PersonModule.php @@ -16,7 +16,7 @@ use Openprovider\Api\Rest\Client\Person\Api\SettingsApi; use Openprovider\Api\Rest\Client\Person\Api\StatisticsApi; -class PersonModule +class PersonModule { /** @var ContactServiceApi */ protected $ContactServiceApi; @@ -46,9 +46,9 @@ class PersonModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->ContactServiceApi = new ContactServiceApi($client, $config, $selector, $host_index); @@ -64,7 +64,7 @@ public function __construct( * Gets ContactServiceApi api. * @return ContactServiceApi */ - public function getContactServiceApi() + public function getContactServiceApi() { return $this->ContactServiceApi; } @@ -73,7 +73,7 @@ public function getContactServiceApi() * Gets CustomerApi api. * @return CustomerApi */ - public function getCustomerApi() + public function getCustomerApi() { return $this->CustomerApi; } @@ -82,7 +82,7 @@ public function getCustomerApi() * Gets EmailVerificationApi api. * @return EmailVerificationApi */ - public function getEmailVerificationApi() + public function getEmailVerificationApi() { return $this->EmailVerificationApi; } @@ -91,7 +91,7 @@ public function getEmailVerificationApi() * Gets PromoMessageServiceApi api. * @return PromoMessageServiceApi */ - public function getPromoMessageServiceApi() + public function getPromoMessageServiceApi() { return $this->PromoMessageServiceApi; } @@ -100,7 +100,7 @@ public function getPromoMessageServiceApi() * Gets ResellerServiceApi api. * @return ResellerServiceApi */ - public function getResellerServiceApi() + public function getResellerServiceApi() { return $this->ResellerServiceApi; } @@ -109,7 +109,7 @@ public function getResellerServiceApi() * Gets SettingsApi api. * @return SettingsApi */ - public function getSettingsApi() + public function getSettingsApi() { return $this->SettingsApi; } @@ -118,7 +118,7 @@ public function getSettingsApi() * Gets StatisticsApi api. * @return StatisticsApi */ - public function getStatisticsApi() + public function getStatisticsApi() { return $this->StatisticsApi; } diff --git a/src/SpamExpert/Api/SEDomainApi.php b/src/SpamExpert/Api/SEDomainApi.php index 271d296..a4187ae 100644 --- a/src/SpamExpert/Api/SEDomainApi.php +++ b/src/SpamExpert/Api/SEDomainApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class SEDomainApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/SpamExpert/Model/ErrorError.php b/src/SpamExpert/Model/ErrorError.php index e90e6d8..9fd42a2 100644 --- a/src/SpamExpert/Model/ErrorError.php +++ b/src/SpamExpert/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/SpamExpert/Model/ErrorWarning.php b/src/SpamExpert/Model/ErrorWarning.php index 64c96a1..9034eb1 100644 --- a/src/SpamExpert/Model/ErrorWarning.php +++ b/src/SpamExpert/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/SpamExpert/Model/ResponseBoolResponse.php b/src/SpamExpert/Model/ResponseBoolResponse.php index 5e9f421..14da9c6 100644 --- a/src/SpamExpert/Model/ResponseBoolResponse.php +++ b/src/SpamExpert/Model/ResponseBoolResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/SpamExpert/Model/ResponseBoolResponseData.php b/src/SpamExpert/Model/ResponseBoolResponseData.php index e5b7c3a..1311888 100644 --- a/src/SpamExpert/Model/ResponseBoolResponseData.php +++ b/src/SpamExpert/Model/ResponseBoolResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['success'] = isset($data['success']) ? $data['success'] : null; } diff --git a/src/SpamExpert/Model/SeDomainAliasUpdates.php b/src/SpamExpert/Model/SeDomainAliasUpdates.php index 62d7577..4ad24ad 100644 --- a/src/SpamExpert/Model/SeDomainAliasUpdates.php +++ b/src/SpamExpert/Model/SeDomainAliasUpdates.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['add'] = isset($data['add']) ? $data['add'] : null; $this->container['remove'] = isset($data['remove']) ? $data['remove'] : null; diff --git a/src/SpamExpert/Model/SeDomainCreateDomainRequest.php b/src/SpamExpert/Model/SeDomainCreateDomainRequest.php index 933151d..c2a11b7 100644 --- a/src/SpamExpert/Model/SeDomainCreateDomainRequest.php +++ b/src/SpamExpert/Model/SeDomainCreateDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['aliases'] = isset($data['aliases']) ? $data['aliases'] : null; $this->container['bundle'] = isset($data['bundle']) ? $data['bundle'] : null; diff --git a/src/SpamExpert/Model/SeDomainDestination.php b/src/SpamExpert/Model/SeDomainDestination.php index e94b0a3..58cc679 100644 --- a/src/SpamExpert/Model/SeDomainDestination.php +++ b/src/SpamExpert/Model/SeDomainDestination.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['hostname'] = isset($data['hostname']) ? $data['hostname'] : null; $this->container['port'] = isset($data['port']) ? $data['port'] : null; diff --git a/src/SpamExpert/Model/SeDomainDomain.php b/src/SpamExpert/Model/SeDomainDomain.php index 75fea26..3a1f89a 100644 --- a/src/SpamExpert/Model/SeDomainDomain.php +++ b/src/SpamExpert/Model/SeDomainDomain.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -223,9 +223,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -240,7 +240,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bundle'] = isset($data['bundle']) ? $data['bundle'] : null; $this->container['domain_name'] = isset($data['domain_name']) ? $data['domain_name'] : null; diff --git a/src/SpamExpert/Model/SeDomainGetDomainResponse.php b/src/SpamExpert/Model/SeDomainGetDomainResponse.php index caaf7eb..815967b 100644 --- a/src/SpamExpert/Model/SeDomainGetDomainResponse.php +++ b/src/SpamExpert/Model/SeDomainGetDomainResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/SpamExpert/Model/SeDomainProducts.php b/src/SpamExpert/Model/SeDomainProducts.php index 823e506..dea0fb2 100644 --- a/src/SpamExpert/Model/SeDomainProducts.php +++ b/src/SpamExpert/Model/SeDomainProducts.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['archiving'] = isset($data['archiving']) ? $data['archiving'] : null; $this->container['incoming'] = isset($data['incoming']) ? $data['incoming'] : null; diff --git a/src/SpamExpert/Model/SeDomainRecords.php b/src/SpamExpert/Model/SeDomainRecords.php index 0bc4976..7c8d7c1 100644 --- a/src/SpamExpert/Model/SeDomainRecords.php +++ b/src/SpamExpert/Model/SeDomainRecords.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['aliases'] = isset($data['aliases']) ? $data['aliases'] : null; $this->container['destinations'] = isset($data['destinations']) ? $data['destinations'] : null; diff --git a/src/SpamExpert/Model/SeDomainUpdateDomainRequest.php b/src/SpamExpert/Model/SeDomainUpdateDomainRequest.php index dde4c6c..12f112a 100644 --- a/src/SpamExpert/Model/SeDomainUpdateDomainRequest.php +++ b/src/SpamExpert/Model/SeDomainUpdateDomainRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['aliases'] = isset($data['aliases']) ? $data['aliases'] : null; $this->container['bundle'] = isset($data['bundle']) ? $data['bundle'] : null; diff --git a/src/SpamExpert/SpamExpertModule.php b/src/SpamExpert/SpamExpertModule.php index fc32a65..7f68093 100644 --- a/src/SpamExpert/SpamExpertModule.php +++ b/src/SpamExpert/SpamExpertModule.php @@ -10,7 +10,7 @@ use Openprovider\Api\Rest\Client\Base\HeaderSelector; use Openprovider\Api\Rest\Client\SpamExpert\Api\SEDomainApi; -class SpamExpertModule +class SpamExpertModule { /** @var SEDomainApi */ protected $SEDomainApi; @@ -22,9 +22,9 @@ class SpamExpertModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->SEDomainApi = new SEDomainApi($client, $config, $selector, $host_index); @@ -34,7 +34,7 @@ public function __construct( * Gets SEDomainApi api. * @return SEDomainApi */ - public function getSEDomainApi() + public function getSEDomainApi() { return $this->SEDomainApi; } diff --git a/src/Ssl/Api/ApproverEmailApi.php b/src/Ssl/Api/ApproverEmailApi.php index 1fe5717..19c4eab 100644 --- a/src/Ssl/Api/ApproverEmailApi.php +++ b/src/Ssl/Api/ApproverEmailApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ApproverEmailApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Api/CsrApi.php b/src/Ssl/Api/CsrApi.php index dbeffa9..c6d47b0 100644 --- a/src/Ssl/Api/CsrApi.php +++ b/src/Ssl/Api/CsrApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class CsrApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Api/OrderApi.php b/src/Ssl/Api/OrderApi.php index 74decba..d4dd0c7 100644 --- a/src/Ssl/Api/OrderApi.php +++ b/src/Ssl/Api/OrderApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class OrderApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Api/OrderApproverEmailApi.php b/src/Ssl/Api/OrderApproverEmailApi.php index 5732f35..01ac33e 100644 --- a/src/Ssl/Api/OrderApproverEmailApi.php +++ b/src/Ssl/Api/OrderApproverEmailApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class OrderApproverEmailApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Api/OtpTokenApi.php b/src/Ssl/Api/OtpTokenApi.php index 4ae0289..34fc0a8 100644 --- a/src/Ssl/Api/OtpTokenApi.php +++ b/src/Ssl/Api/OtpTokenApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class OtpTokenApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Api/ProductApi.php b/src/Ssl/Api/ProductApi.php index a7adee9..90032ac 100644 --- a/src/Ssl/Api/ProductApi.php +++ b/src/Ssl/Api/ProductApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class ProductApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Ssl/Model/ApproveremailListApproverEmailsResponse.php b/src/Ssl/Model/ApproveremailListApproverEmailsResponse.php index a6c2c80..3714e74 100644 --- a/src/Ssl/Model/ApproveremailListApproverEmailsResponse.php +++ b/src/Ssl/Model/ApproveremailListApproverEmailsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ApproveremailListApproverEmailsResponseData.php b/src/Ssl/Model/ApproveremailListApproverEmailsResponseData.php index bcfa45a..685555f 100644 --- a/src/Ssl/Model/ApproveremailListApproverEmailsResponseData.php +++ b/src/Ssl/Model/ApproveremailListApproverEmailsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; } diff --git a/src/Ssl/Model/ApproveremailResendApproverEmailRequest.php b/src/Ssl/Model/ApproveremailResendApproverEmailRequest.php index c0c18b2..4e35b21 100644 --- a/src/Ssl/Model/ApproveremailResendApproverEmailRequest.php +++ b/src/Ssl/Model/ApproveremailResendApproverEmailRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/ApproveremailResendApproverEmailResponse.php b/src/Ssl/Model/ApproveremailResendApproverEmailResponse.php index 04427ec..6589f58 100644 --- a/src/Ssl/Model/ApproveremailResendApproverEmailResponse.php +++ b/src/Ssl/Model/ApproveremailResendApproverEmailResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ApproveremailResendApproverEmailResponseData.php b/src/Ssl/Model/ApproveremailResendApproverEmailResponseData.php index 7bf109f..bfeb545 100644 --- a/src/Ssl/Model/ApproveremailResendApproverEmailResponseData.php +++ b/src/Ssl/Model/ApproveremailResendApproverEmailResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressRequest.php b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressRequest.php index 172f094..d30b47d 100644 --- a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressRequest.php +++ b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approver_email'] = isset($data['approver_email']) ? $data['approver_email'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponse.php b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponse.php index c38e413..8c60cd1 100644 --- a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponse.php +++ b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponseData.php b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponseData.php index c815826..33a15c6 100644 --- a/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponseData.php +++ b/src/Ssl/Model/ApproveremailUpdateApproverEmailAddressResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/CsrCreateCsrRequest.php b/src/Ssl/Model/CsrCreateCsrRequest.php index fb424ba..ae36eb7 100644 --- a/src/Ssl/Model/CsrCreateCsrRequest.php +++ b/src/Ssl/Model/CsrCreateCsrRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -213,9 +213,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -230,7 +230,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bits'] = isset($data['bits']) ? $data['bits'] : null; $this->container['common_name'] = isset($data['common_name']) ? $data['common_name'] : null; diff --git a/src/Ssl/Model/CsrCreateCsrResponse.php b/src/Ssl/Model/CsrCreateCsrResponse.php index 3bf14c4..d3c2b77 100644 --- a/src/Ssl/Model/CsrCreateCsrResponse.php +++ b/src/Ssl/Model/CsrCreateCsrResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/CsrCreateCsrResponseData.php b/src/Ssl/Model/CsrCreateCsrResponseData.php index 77bdd03..6449130 100644 --- a/src/Ssl/Model/CsrCreateCsrResponseData.php +++ b/src/Ssl/Model/CsrCreateCsrResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['command'] = isset($data['command']) ? $data['command'] : null; $this->container['config'] = isset($data['config']) ? $data['config'] : null; diff --git a/src/Ssl/Model/CsrCsrPublicKey.php b/src/Ssl/Model/CsrCsrPublicKey.php index 4f20374..749e9f0 100644 --- a/src/Ssl/Model/CsrCsrPublicKey.php +++ b/src/Ssl/Model/CsrCsrPublicKey.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['bits'] = isset($data['bits']) ? $data['bits'] : null; $this->container['key'] = isset($data['key']) ? $data['key'] : null; diff --git a/src/Ssl/Model/CsrCsrSubject.php b/src/Ssl/Model/CsrCsrSubject.php index 8c59a3b..fd93967 100644 --- a/src/Ssl/Model/CsrCsrSubject.php +++ b/src/Ssl/Model/CsrCsrSubject.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -193,9 +193,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -210,7 +210,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['common_name'] = isset($data['common_name']) ? $data['common_name'] : null; $this->container['country'] = isset($data['country']) ? $data['country'] : null; diff --git a/src/Ssl/Model/CsrDecodeCsrRequest.php b/src/Ssl/Model/CsrDecodeCsrRequest.php index e42d4b9..6a1a83f 100644 --- a/src/Ssl/Model/CsrDecodeCsrRequest.php +++ b/src/Ssl/Model/CsrDecodeCsrRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['csr'] = isset($data['csr']) ? $data['csr'] : null; } diff --git a/src/Ssl/Model/CsrDecodeCsrResponse.php b/src/Ssl/Model/CsrDecodeCsrResponse.php index 6bf13c8..7a5b27f 100644 --- a/src/Ssl/Model/CsrDecodeCsrResponse.php +++ b/src/Ssl/Model/CsrDecodeCsrResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/CsrDecodeCsrResponseData.php b/src/Ssl/Model/CsrDecodeCsrResponseData.php index b7cfc59..2e829ef 100644 --- a/src/Ssl/Model/CsrDecodeCsrResponseData.php +++ b/src/Ssl/Model/CsrDecodeCsrResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['domain_names_count'] = isset($data['domain_names_count']) ? $data['domain_names_count'] : null; $this->container['public_key'] = isset($data['public_key']) ? $data['public_key'] : null; diff --git a/src/Ssl/Model/ErrorError.php b/src/Ssl/Model/ErrorError.php index c41e41b..7eed143 100644 --- a/src/Ssl/Model/ErrorError.php +++ b/src/Ssl/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ErrorWarning.php b/src/Ssl/Model/ErrorWarning.php index f6087ea..99882f9 100644 --- a/src/Ssl/Model/ErrorWarning.php +++ b/src/Ssl/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderCancelOrderRequest.php b/src/Ssl/Model/OrderCancelOrderRequest.php index 743ddff..781d733 100644 --- a/src/Ssl/Model/OrderCancelOrderRequest.php +++ b/src/Ssl/Model/OrderCancelOrderRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OrderCancelOrderResponse.php b/src/Ssl/Model/OrderCancelOrderResponse.php index 950b79c..769ce01 100644 --- a/src/Ssl/Model/OrderCancelOrderResponse.php +++ b/src/Ssl/Model/OrderCancelOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderCancelOrderResponseData.php b/src/Ssl/Model/OrderCancelOrderResponseData.php index 4641227..de2d312 100644 --- a/src/Ssl/Model/OrderCancelOrderResponseData.php +++ b/src/Ssl/Model/OrderCancelOrderResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OrderCreateOrderRequest.php b/src/Ssl/Model/OrderCreateOrderRequest.php index e022076..88541ef 100644 --- a/src/Ssl/Model/OrderCreateOrderRequest.php +++ b/src/Ssl/Model/OrderCreateOrderRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -233,9 +233,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -250,7 +250,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approver_email'] = isset($data['approver_email']) ? $data['approver_email'] : null; $this->container['autorenew'] = isset($data['autorenew']) ? $data['autorenew'] : 'off'; diff --git a/src/Ssl/Model/OrderCreateOrderResponse.php b/src/Ssl/Model/OrderCreateOrderResponse.php index e89039b..3778cab 100644 --- a/src/Ssl/Model/OrderCreateOrderResponse.php +++ b/src/Ssl/Model/OrderCreateOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderCreateOrderResponseData.php b/src/Ssl/Model/OrderCreateOrderResponseData.php index 0a48a9a..a19ba2f 100644 --- a/src/Ssl/Model/OrderCreateOrderResponseData.php +++ b/src/Ssl/Model/OrderCreateOrderResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OrderGetOrderResponse.php b/src/Ssl/Model/OrderGetOrderResponse.php index e8929b3..a65d3f4 100644 --- a/src/Ssl/Model/OrderGetOrderResponse.php +++ b/src/Ssl/Model/OrderGetOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderListOrdersRequestOrderBy.php b/src/Ssl/Model/OrderListOrdersRequestOrderBy.php index 544118c..abff425 100644 --- a/src/Ssl/Model/OrderListOrdersRequestOrderBy.php +++ b/src/Ssl/Model/OrderListOrdersRequestOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active_date'] = isset($data['active_date']) ? $data['active_date'] : null; $this->container['common_name'] = isset($data['common_name']) ? $data['common_name'] : null; diff --git a/src/Ssl/Model/OrderListOrdersResponse.php b/src/Ssl/Model/OrderListOrdersResponse.php index 9c8f156..9fb8640 100644 --- a/src/Ssl/Model/OrderListOrdersResponse.php +++ b/src/Ssl/Model/OrderListOrdersResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderListOrdersResponseData.php b/src/Ssl/Model/OrderListOrdersResponseData.php index 0e63506..ea8ae7c 100644 --- a/src/Ssl/Model/OrderListOrdersResponseData.php +++ b/src/Ssl/Model/OrderListOrdersResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Ssl/Model/OrderReissueOrderRequest.php b/src/Ssl/Model/OrderReissueOrderRequest.php index 5378baa..2e16e9e 100644 --- a/src/Ssl/Model/OrderReissueOrderRequest.php +++ b/src/Ssl/Model/OrderReissueOrderRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -203,9 +203,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -220,7 +220,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approver_email'] = isset($data['approver_email']) ? $data['approver_email'] : null; $this->container['csr'] = isset($data['csr']) ? $data['csr'] : null; diff --git a/src/Ssl/Model/OrderReissueOrderResponse.php b/src/Ssl/Model/OrderReissueOrderResponse.php index 2f43f63..3b2ef2f 100644 --- a/src/Ssl/Model/OrderReissueOrderResponse.php +++ b/src/Ssl/Model/OrderReissueOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderReissueOrderResponseData.php b/src/Ssl/Model/OrderReissueOrderResponseData.php index 6d87c88..236c251 100644 --- a/src/Ssl/Model/OrderReissueOrderResponseData.php +++ b/src/Ssl/Model/OrderReissueOrderResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OrderRenewOrderRequest.php b/src/Ssl/Model/OrderRenewOrderRequest.php index 5f5a3d0..6d235b3 100644 --- a/src/Ssl/Model/OrderRenewOrderRequest.php +++ b/src/Ssl/Model/OrderRenewOrderRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['enable_dns_automation'] = isset($data['enable_dns_automation']) ? $data['enable_dns_automation'] : false; $this->container['id'] = isset($data['id']) ? $data['id'] : null; diff --git a/src/Ssl/Model/OrderRenewOrderResponse.php b/src/Ssl/Model/OrderRenewOrderResponse.php index ca56303..08fa435 100644 --- a/src/Ssl/Model/OrderRenewOrderResponse.php +++ b/src/Ssl/Model/OrderRenewOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderRenewOrderResponseData.php b/src/Ssl/Model/OrderRenewOrderResponseData.php index efec33c..4244d7f 100644 --- a/src/Ssl/Model/OrderRenewOrderResponseData.php +++ b/src/Ssl/Model/OrderRenewOrderResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OrderSslOrder.php b/src/Ssl/Model/OrderSslOrder.php index 6bfdd37..ec15497 100644 --- a/src/Ssl/Model/OrderSslOrder.php +++ b/src/Ssl/Model/OrderSslOrder.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -328,9 +328,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -345,7 +345,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['active_date'] = isset($data['active_date']) ? $data['active_date'] : null; $this->container['additional_data'] = isset($data['additional_data']) ? $data['additional_data'] : null; diff --git a/src/Ssl/Model/OrderSslOrderAdditionalData.php b/src/Ssl/Model/OrderSslOrderAdditionalData.php index 5e299c4..5fff6ab 100644 --- a/src/Ssl/Model/OrderSslOrderAdditionalData.php +++ b/src/Ssl/Model/OrderSslOrderAdditionalData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -228,9 +228,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -245,7 +245,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['dns'] = isset($data['dns']) ? $data['dns'] : null; $this->container['dns_record'] = isset($data['dns_record']) ? $data['dns_record'] : null; diff --git a/src/Ssl/Model/OrderSslOrderDomainValidationMethods.php b/src/Ssl/Model/OrderSslOrderDomainValidationMethods.php index e79616b..69650e1 100644 --- a/src/Ssl/Model/OrderSslOrderDomainValidationMethods.php +++ b/src/Ssl/Model/OrderSslOrderDomainValidationMethods.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['host_name'] = isset($data['host_name']) ? $data['host_name'] : null; $this->container['method'] = isset($data['method']) ? $data['method'] : null; diff --git a/src/Ssl/Model/OrderSslOrderDomainValidationStatuses.php b/src/Ssl/Model/OrderSslOrderDomainValidationStatuses.php index 7b466f9..9e7c017 100644 --- a/src/Ssl/Model/OrderSslOrderDomainValidationStatuses.php +++ b/src/Ssl/Model/OrderSslOrderDomainValidationStatuses.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['ca_operation'] = isset($data['ca_operation']) ? $data['ca_operation'] : null; $this->container['ca_order_status'] = isset($data['ca_order_status']) ? $data['ca_order_status'] : null; diff --git a/src/Ssl/Model/OrderSslOrderOptions.php b/src/Ssl/Model/OrderSslOrderOptions.php index f939ce2..8356da3 100644 --- a/src/Ssl/Model/OrderSslOrderOptions.php +++ b/src/Ssl/Model/OrderSslOrderOptions.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['features'] = isset($data['features']) ? $data['features'] : null; } diff --git a/src/Ssl/Model/OrderUpdateOrderRequest.php b/src/Ssl/Model/OrderUpdateOrderRequest.php index 7efdfe0..3876af3 100644 --- a/src/Ssl/Model/OrderUpdateOrderRequest.php +++ b/src/Ssl/Model/OrderUpdateOrderRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -218,9 +218,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -235,7 +235,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['approver_email'] = isset($data['approver_email']) ? $data['approver_email'] : null; $this->container['autorenew'] = isset($data['autorenew']) ? $data['autorenew'] : null; diff --git a/src/Ssl/Model/OrderUpdateOrderResponse.php b/src/Ssl/Model/OrderUpdateOrderResponse.php index dbdceb3..616a4b0 100644 --- a/src/Ssl/Model/OrderUpdateOrderResponse.php +++ b/src/Ssl/Model/OrderUpdateOrderResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OrderUpdateOrderResponseData.php b/src/Ssl/Model/OrderUpdateOrderResponseData.php index f9df311..27903cd 100644 --- a/src/Ssl/Model/OrderUpdateOrderResponseData.php +++ b/src/Ssl/Model/OrderUpdateOrderResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OtptokenCreateOtpTokenRequest.php b/src/Ssl/Model/OtptokenCreateOtpTokenRequest.php index df4e8fa..659e2f7 100644 --- a/src/Ssl/Model/OtptokenCreateOtpTokenRequest.php +++ b/src/Ssl/Model/OtptokenCreateOtpTokenRequest.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -163,9 +163,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -180,7 +180,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; } diff --git a/src/Ssl/Model/OtptokenCreateOtpTokenResponse.php b/src/Ssl/Model/OtptokenCreateOtpTokenResponse.php index 0d32af6..cd7689a 100644 --- a/src/Ssl/Model/OtptokenCreateOtpTokenResponse.php +++ b/src/Ssl/Model/OtptokenCreateOtpTokenResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/OtptokenCreateOtpTokenResponseData.php b/src/Ssl/Model/OtptokenCreateOtpTokenResponseData.php index 1a42fc6..b97e346 100644 --- a/src/Ssl/Model/OtptokenCreateOtpTokenResponseData.php +++ b/src/Ssl/Model/OtptokenCreateOtpTokenResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['expire_at'] = isset($data['expire_at']) ? $data['expire_at'] : null; $this->container['token'] = isset($data['token']) ? $data['token'] : null; diff --git a/src/Ssl/Model/ProductGetProductResponse.php b/src/Ssl/Model/ProductGetProductResponse.php index 3b77898..a107bd2 100644 --- a/src/Ssl/Model/ProductGetProductResponse.php +++ b/src/Ssl/Model/ProductGetProductResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ProductListProductsRequestOrderBy.php b/src/Ssl/Model/ProductListProductsRequestOrderBy.php index 540fc09..5723c7a 100644 --- a/src/Ssl/Model/ProductListProductsRequestOrderBy.php +++ b/src/Ssl/Model/ProductListProductsRequestOrderBy.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -188,9 +188,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -205,7 +205,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brand_name'] = isset($data['brand_name']) ? $data['brand_name'] : null; $this->container['brand_seqno'] = isset($data['brand_seqno']) ? $data['brand_seqno'] : null; diff --git a/src/Ssl/Model/ProductListProductsResponse.php b/src/Ssl/Model/ProductListProductsResponse.php index 6bf0170..6654f32 100644 --- a/src/Ssl/Model/ProductListProductsResponse.php +++ b/src/Ssl/Model/ProductListProductsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Ssl/Model/ProductListProductsResponseData.php b/src/Ssl/Model/ProductListProductsResponseData.php index 9cf17eb..4540921 100644 --- a/src/Ssl/Model/ProductListProductsResponseData.php +++ b/src/Ssl/Model/ProductListProductsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Ssl/Model/ProductSslProduct.php b/src/Ssl/Model/ProductSslProduct.php index 9ec8bd3..46015b9 100644 --- a/src/Ssl/Model/ProductSslProduct.php +++ b/src/Ssl/Model/ProductSslProduct.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -298,9 +298,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -315,7 +315,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['brand_name'] = isset($data['brand_name']) ? $data['brand_name'] : null; $this->container['bypass_san'] = isset($data['bypass_san']) ? $data['bypass_san'] : null; diff --git a/src/Ssl/Model/ProductSslProductLevelPrices.php b/src/Ssl/Model/ProductSslProductLevelPrices.php index 0d29aaf..653da29 100644 --- a/src/Ssl/Model/ProductSslProductLevelPrices.php +++ b/src/Ssl/Model/ProductSslProductLevelPrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['level'] = isset($data['level']) ? $data['level'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; diff --git a/src/Ssl/Model/ProductSslProductPrice.php b/src/Ssl/Model/ProductSslProductPrice.php index 122d045..2b1e0b1 100644 --- a/src/Ssl/Model/ProductSslProductPrice.php +++ b/src/Ssl/Model/ProductSslProductPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Ssl/Model/ProductSslProductPriceGroup.php b/src/Ssl/Model/ProductSslProductPriceGroup.php index c425b76..6ba2188 100644 --- a/src/Ssl/Model/ProductSslProductPriceGroup.php +++ b/src/Ssl/Model/ProductSslProductPriceGroup.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Ssl/Model/ProductSslProductPrices.php b/src/Ssl/Model/ProductSslProductPrices.php index 302bdd5..cb1b373 100644 --- a/src/Ssl/Model/ProductSslProductPrices.php +++ b/src/Ssl/Model/ProductSslProductPrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -178,9 +178,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -195,7 +195,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['extra_domain_price'] = isset($data['extra_domain_price']) ? $data['extra_domain_price'] : null; $this->container['extra_wildcard_domain_price'] = isset($data['extra_wildcard_domain_price']) ? $data['extra_wildcard_domain_price'] : null; diff --git a/src/Ssl/Model/ProductSslProductReseller.php b/src/Ssl/Model/ProductSslProductReseller.php index 838aa6e..1cb0836 100644 --- a/src/Ssl/Model/ProductSslProductReseller.php +++ b/src/Ssl/Model/ProductSslProductReseller.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Ssl/Model/ProductSslProductSupportedSoftware.php b/src/Ssl/Model/ProductSslProductSupportedSoftware.php index 0d9638d..9ec670c 100644 --- a/src/Ssl/Model/ProductSslProductSupportedSoftware.php +++ b/src/Ssl/Model/ProductSslProductSupportedSoftware.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['title'] = isset($data['title']) ? $data['title'] : null; diff --git a/src/Ssl/Model/ProductSslProductWarranty.php b/src/Ssl/Model/ProductSslProductWarranty.php index 7c2f391..ed16fd3 100644 --- a/src/Ssl/Model/ProductSslProductWarranty.php +++ b/src/Ssl/Model/ProductSslProductWarranty.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Ssl/SslModule.php b/src/Ssl/SslModule.php index 23e2534..bfd71e0 100644 --- a/src/Ssl/SslModule.php +++ b/src/Ssl/SslModule.php @@ -15,7 +15,7 @@ use Openprovider\Api\Rest\Client\Ssl\Api\OtpTokenApi; use Openprovider\Api\Rest\Client\Ssl\Api\ProductApi; -class SslModule +class SslModule { /** @var ApproverEmailApi */ protected $ApproverEmailApi; @@ -42,9 +42,9 @@ class SslModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->ApproverEmailApi = new ApproverEmailApi($client, $config, $selector, $host_index); @@ -59,7 +59,7 @@ public function __construct( * Gets ApproverEmailApi api. * @return ApproverEmailApi */ - public function getApproverEmailApi() + public function getApproverEmailApi() { return $this->ApproverEmailApi; } @@ -68,7 +68,7 @@ public function getApproverEmailApi() * Gets CsrApi api. * @return CsrApi */ - public function getCsrApi() + public function getCsrApi() { return $this->CsrApi; } @@ -77,7 +77,7 @@ public function getCsrApi() * Gets OrderApi api. * @return OrderApi */ - public function getOrderApi() + public function getOrderApi() { return $this->OrderApi; } @@ -86,7 +86,7 @@ public function getOrderApi() * Gets OrderApproverEmailApi api. * @return OrderApproverEmailApi */ - public function getOrderApproverEmailApi() + public function getOrderApproverEmailApi() { return $this->OrderApproverEmailApi; } @@ -95,7 +95,7 @@ public function getOrderApproverEmailApi() * Gets OtpTokenApi api. * @return OtpTokenApi */ - public function getOtpTokenApi() + public function getOtpTokenApi() { return $this->OtpTokenApi; } @@ -104,7 +104,7 @@ public function getOtpTokenApi() * Gets ProductApi api. * @return ProductApi */ - public function getProductApi() + public function getProductApi() { return $this->ProductApi; } diff --git a/src/Tld/Api/TldServiceApi.php b/src/Tld/Api/TldServiceApi.php index f10db5e..e751ebd 100644 --- a/src/Tld/Api/TldServiceApi.php +++ b/src/Tld/Api/TldServiceApi.php @@ -15,7 +15,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -77,9 +77,9 @@ class TldServiceApi * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->client = $client ?: new Client(); diff --git a/src/Tld/Model/ErrorError.php b/src/Tld/Model/ErrorError.php index f81fc30..1a776e1 100644 --- a/src/Tld/Model/ErrorError.php +++ b/src/Tld/Model/ErrorError.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Tld/Model/ErrorWarning.php b/src/Tld/Model/ErrorWarning.php index 2a56f28..a531511 100644 --- a/src/Tld/Model/ErrorWarning.php +++ b/src/Tld/Model/ErrorWarning.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Tld/Model/TldApplicationMode.php b/src/Tld/Model/TldApplicationMode.php index 0b22d43..bd53b07 100644 --- a/src/Tld/Model/TldApplicationMode.php +++ b/src/Tld/Model/TldApplicationMode.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['title'] = isset($data['title']) ? $data['title'] : null; diff --git a/src/Tld/Model/TldDescription.php b/src/Tld/Model/TldDescription.php index 1fe8966..c49d0f9 100644 --- a/src/Tld/Model/TldDescription.php +++ b/src/Tld/Model/TldDescription.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['text'] = isset($data['text']) ? $data['text'] : null; $this->container['url'] = isset($data['url']) ? $data['url'] : null; diff --git a/src/Tld/Model/TldGetTldResponse.php b/src/Tld/Model/TldGetTldResponse.php index ec065e0..fbb338d 100644 --- a/src/Tld/Model/TldGetTldResponse.php +++ b/src/Tld/Model/TldGetTldResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Tld/Model/TldIdnScript.php b/src/Tld/Model/TldIdnScript.php index f558ad0..1a1ea55 100644 --- a/src/Tld/Model/TldIdnScript.php +++ b/src/Tld/Model/TldIdnScript.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['description'] = isset($data['description']) ? $data['description'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; diff --git a/src/Tld/Model/TldLevelPrice.php b/src/Tld/Model/TldLevelPrice.php index ea25c70..6823cc6 100644 --- a/src/Tld/Model/TldLevelPrice.php +++ b/src/Tld/Model/TldLevelPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['level'] = isset($data['level']) ? $data['level'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Tld/Model/TldListTldsResponse.php b/src/Tld/Model/TldListTldsResponse.php index 34d1e0f..b7fd545 100644 --- a/src/Tld/Model/TldListTldsResponse.php +++ b/src/Tld/Model/TldListTldsResponse.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -183,9 +183,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -200,7 +200,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['code'] = isset($data['code']) ? $data['code'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; diff --git a/src/Tld/Model/TldListTldsResponseData.php b/src/Tld/Model/TldListTldsResponseData.php index a251942..6134681 100644 --- a/src/Tld/Model/TldListTldsResponseData.php +++ b/src/Tld/Model/TldListTldsResponseData.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['results'] = isset($data['results']) ? $data['results'] : null; $this->container['total'] = isset($data['total']) ? $data['total'] : null; diff --git a/src/Tld/Model/TldPrice.php b/src/Tld/Model/TldPrice.php index a08d36f..1878963 100644 --- a/src/Tld/Model/TldPrice.php +++ b/src/Tld/Model/TldPrice.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['reseller'] = isset($data['reseller']) ? $data['reseller'] : null; diff --git a/src/Tld/Model/TldPriceInCurrency.php b/src/Tld/Model/TldPriceInCurrency.php index 6bf8267..c07dc0e 100644 --- a/src/Tld/Model/TldPriceInCurrency.php +++ b/src/Tld/Model/TldPriceInCurrency.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -168,9 +168,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -185,7 +185,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['currency'] = isset($data['currency']) ? $data['currency'] : null; $this->container['price'] = isset($data['price']) ? $data['price'] : null; diff --git a/src/Tld/Model/TldPriceWithPromoInfo.php b/src/Tld/Model/TldPriceWithPromoInfo.php index 5b4d07c..da363ea 100644 --- a/src/Tld/Model/TldPriceWithPromoInfo.php +++ b/src/Tld/Model/TldPriceWithPromoInfo.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['product'] = isset($data['product']) ? $data['product'] : null; $this->container['promotion_details'] = isset($data['promotion_details']) ? $data['promotion_details'] : null; diff --git a/src/Tld/Model/TldPrices.php b/src/Tld/Model/TldPrices.php index 60e28ec..46434bb 100644 --- a/src/Tld/Model/TldPrices.php +++ b/src/Tld/Model/TldPrices.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -218,9 +218,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -235,7 +235,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['create_price'] = isset($data['create_price']) ? $data['create_price'] : null; $this->container['domicile_price'] = isset($data['domicile_price']) ? $data['domicile_price'] : null; diff --git a/src/Tld/Model/TldPromoDetails.php b/src/Tld/Model/TldPromoDetails.php index f49552e..78c2854 100644 --- a/src/Tld/Model/TldPromoDetails.php +++ b/src/Tld/Model/TldPromoDetails.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -173,9 +173,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -190,7 +190,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null; $this->container['non_promo_price'] = isset($data['non_promo_price']) ? $data['non_promo_price'] : null; diff --git a/src/Tld/Model/TldTld.php b/src/Tld/Model/TldTld.php index eb3fd41..4f3df3a 100644 --- a/src/Tld/Model/TldTld.php +++ b/src/Tld/Model/TldTld.php @@ -16,7 +16,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0-beta - * + * * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 7.2.0 */ @@ -333,9 +333,9 @@ public function getModelName() return self::$openAPIModelName; } - - + + /** * Associative array for storing property values @@ -350,7 +350,7 @@ public function getModelName() * @param mixed[] $data Associated array of property values * initializing the model */ - public function __construct(array $data = null) + public function __construct(?array $data = null) { $this->container['admin_handle_supported'] = isset($data['admin_handle_supported']) ? $data['admin_handle_supported'] : null; $this->container['billing_handle_enabled'] = isset($data['billing_handle_enabled']) ? $data['billing_handle_enabled'] : null; diff --git a/src/Tld/TldModule.php b/src/Tld/TldModule.php index fbf87f2..f9aaaea 100644 --- a/src/Tld/TldModule.php +++ b/src/Tld/TldModule.php @@ -10,7 +10,7 @@ use Openprovider\Api\Rest\Client\Base\HeaderSelector; use Openprovider\Api\Rest\Client\Tld\Api\TldServiceApi; -class TldModule +class TldModule { /** @var TldServiceApi */ protected $TldServiceApi; @@ -22,9 +22,9 @@ class TldModule * @param int $host_index (Optional) host index to select the list of hosts if defined in the OpenAPI spec */ public function __construct( - ClientInterface $client = null, - Configuration $config = null, - HeaderSelector $selector = null, + ?ClientInterface $client = null, + ?Configuration $config = null, + ?HeaderSelector $selector = null, $host_index = 0 ) { $this->TldServiceApi = new TldServiceApi($client, $config, $selector, $host_index); @@ -34,7 +34,7 @@ public function __construct( * Gets TldServiceApi api. * @return TldServiceApi */ - public function getTldServiceApi() + public function getTldServiceApi() { return $this->TldServiceApi; }