diff --git a/openapi-sdk.yaml b/openapi-sdk.yaml
index f984d4de6..c123c2eec 100644
--- a/openapi-sdk.yaml
+++ b/openapi-sdk.yaml
@@ -8112,10 +8112,10 @@ components:
description: 'The token provided when you got the expired access token.'
type: string
client_id:
- description: 'The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
+ description: 'The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.'
type: string
client_secret:
- description: 'The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
+ description: 'The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.'
type: string
type: object
ReportCreateRequest:
diff --git a/openapi.yaml b/openapi.yaml
index ec703dbe0..4d4ae426d 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -8112,10 +8112,10 @@ components:
description: 'The token provided when you got the expired access token.'
type: string
client_id:
- description: 'The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
+ description: 'The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.'
type: string
client_secret:
- description: 'The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
+ description: 'The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.'
type: string
type: object
ReportCreateRequest:
diff --git a/sdks/dotnet/docs/OAuthTokenRefreshRequest.md b/sdks/dotnet/docs/OAuthTokenRefreshRequest.md
index 5e33e77d9..adf42295c 100644
--- a/sdks/dotnet/docs/OAuthTokenRefreshRequest.md
+++ b/sdks/dotnet/docs/OAuthTokenRefreshRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**GrantType** | **string** | When refreshing an existing token use `refresh_token`. | [default to "refresh_token"]**RefreshToken** | **string** | The token provided when you got the expired access token. | **ClientId** | **string** | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | [optional] **ClientSecret** | **string** | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | [optional]
+**GrantType** | **string** | When refreshing an existing token use `refresh_token`. | [default to "refresh_token"]**RefreshToken** | **string** | The token provided when you got the expired access token. | **ClientId** | **string** | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | [optional] **ClientSecret** | **string** | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/sdks/dotnet/src/Dropbox.Sign/Model/OAuthTokenRefreshRequest.cs b/sdks/dotnet/src/Dropbox.Sign/Model/OAuthTokenRefreshRequest.cs
index 934de0d88..9be4f7721 100644
--- a/sdks/dotnet/src/Dropbox.Sign/Model/OAuthTokenRefreshRequest.cs
+++ b/sdks/dotnet/src/Dropbox.Sign/Model/OAuthTokenRefreshRequest.cs
@@ -43,8 +43,8 @@ protected OAuthTokenRefreshRequest() { }
///
/// When refreshing an existing token use `refresh_token`. (required) (default to "refresh_token").
/// The token provided when you got the expired access token. (required).
- /// The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled..
- /// The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled..
+ /// The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings..
+ /// The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings..
public OAuthTokenRefreshRequest(string grantType = @"refresh_token", string refreshToken = default(string), string clientId = default(string), string clientSecret = default(string))
{
@@ -95,16 +95,16 @@ public static OAuthTokenRefreshRequest Init(string jsonData)
public string RefreshToken { get; set; }
///
- /// The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ /// The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
///
- /// The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ /// The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
[DataMember(Name = "client_id", EmitDefaultValue = true)]
public string ClientId { get; set; }
///
- /// The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ /// The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
///
- /// The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ /// The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
[DataMember(Name = "client_secret", EmitDefaultValue = true)]
public string ClientSecret { get; set; }
diff --git a/sdks/java-v1/docs/OAuthTokenRefreshRequest.md b/sdks/java-v1/docs/OAuthTokenRefreshRequest.md
index f0ce43061..bb0a0e5f6 100644
--- a/sdks/java-v1/docs/OAuthTokenRefreshRequest.md
+++ b/sdks/java-v1/docs/OAuthTokenRefreshRequest.md
@@ -10,8 +10,8 @@
|------------ | ------------- | ------------- | -------------|
| `grantType`*_required_ | ```String``` | When refreshing an existing token use `refresh_token`. | |
| `refreshToken`*_required_ | ```String``` | The token provided when you got the expired access token. | |
-| `clientId` | ```String``` | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
-| `clientSecret` | ```String``` | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
+| `clientId` | ```String``` | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
+| `clientSecret` | ```String``` | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
diff --git a/sdks/java-v1/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java b/sdks/java-v1/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
index d8226d6a7..58cdfdb6d 100644
--- a/sdks/java-v1/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
+++ b/sdks/java-v1/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
@@ -117,9 +117,8 @@ public OAuthTokenRefreshRequest clientId(@javax.annotation.Nullable String clien
}
/**
- * The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the
- * \"Client Credentials Required\" setting is enabled for token refresh; optional if
- * disabled.
+ * The client ID for your API app. Required for new API apps. To enhance security, we recommend
+ * making it required for existing apps in your app settings.
*
* @return clientId
*/
@@ -141,9 +140,8 @@ public OAuthTokenRefreshRequest clientSecret(@javax.annotation.Nullable String c
}
/**
- * The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if
- * the \"Client Credentials Required\" setting is enabled for token refresh; optional
- * if disabled.
+ * The client secret for your API app. Required for new API apps. To enhance security, we
+ * recommend making it required for existing apps in your app settings.
*
* @return clientSecret
*/
diff --git a/sdks/java-v2/docs/OAuthTokenRefreshRequest.md b/sdks/java-v2/docs/OAuthTokenRefreshRequest.md
index f0ce43061..bb0a0e5f6 100644
--- a/sdks/java-v2/docs/OAuthTokenRefreshRequest.md
+++ b/sdks/java-v2/docs/OAuthTokenRefreshRequest.md
@@ -10,8 +10,8 @@
|------------ | ------------- | ------------- | -------------|
| `grantType`*_required_ | ```String``` | When refreshing an existing token use `refresh_token`. | |
| `refreshToken`*_required_ | ```String``` | The token provided when you got the expired access token. | |
-| `clientId` | ```String``` | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
-| `clientSecret` | ```String``` | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
+| `clientId` | ```String``` | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
+| `clientSecret` | ```String``` | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
diff --git a/sdks/java-v2/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java b/sdks/java-v2/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
index 550d2ee1b..3a059a063 100644
--- a/sdks/java-v2/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
+++ b/sdks/java-v2/src/main/java/com/dropbox/sign/model/OAuthTokenRefreshRequest.java
@@ -131,7 +131,7 @@ public OAuthTokenRefreshRequest clientId(@jakarta.annotation.Nullable String cli
}
/**
- * The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
* @return clientId
*/
@jakarta.annotation.Nullable
@@ -156,7 +156,7 @@ public OAuthTokenRefreshRequest clientSecret(@jakarta.annotation.Nullable String
}
/**
- * The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
* @return clientSecret
*/
@jakarta.annotation.Nullable
diff --git a/sdks/node/docs/model/OAuthTokenRefreshRequest.md b/sdks/node/docs/model/OAuthTokenRefreshRequest.md
index 8a24bdc15..b09d1e8b6 100644
--- a/sdks/node/docs/model/OAuthTokenRefreshRequest.md
+++ b/sdks/node/docs/model/OAuthTokenRefreshRequest.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| `grantType`*_required_ | ```string``` | When refreshing an existing token use `refresh_token`. | [default to 'refresh_token'] |
| `refreshToken`*_required_ | ```string``` | The token provided when you got the expired access token. | |
-| `clientId` | ```string``` | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
-| `clientSecret` | ```string``` | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
+| `clientId` | ```string``` | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
+| `clientSecret` | ```string``` | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/sdks/node/model/oAuthTokenRefreshRequest.ts b/sdks/node/model/oAuthTokenRefreshRequest.ts
index 2f8971dd5..0474497d8 100644
--- a/sdks/node/model/oAuthTokenRefreshRequest.ts
+++ b/sdks/node/model/oAuthTokenRefreshRequest.ts
@@ -34,11 +34,11 @@ export class OAuthTokenRefreshRequest {
*/
"refreshToken": string;
/**
- * The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
*/
"clientId"?: string;
/**
- * The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
*/
"clientSecret"?: string;
diff --git a/sdks/php/docs/Model/OAuthTokenRefreshRequest.md b/sdks/php/docs/Model/OAuthTokenRefreshRequest.md
index 9ba09db42..590ca4bc3 100644
--- a/sdks/php/docs/Model/OAuthTokenRefreshRequest.md
+++ b/sdks/php/docs/Model/OAuthTokenRefreshRequest.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| `grant_type`*_required_ | ```string``` | When refreshing an existing token use `refresh_token`. | [default to 'refresh_token'] |
| `refresh_token`*_required_ | ```string``` | The token provided when you got the expired access token. | |
-| `client_id` | ```string``` | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
-| `client_secret` | ```string``` | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled. | |
+| `client_id` | ```string``` | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
+| `client_secret` | ```string``` | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/sdks/php/src/Model/AccountCreateRequest.php b/sdks/php/src/Model/AccountCreateRequest.php
index 7a4841477..c5d7d28fb 100644
--- a/sdks/php/src/Model/AccountCreateRequest.php
+++ b/sdks/php/src/Model/AccountCreateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountCreateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountCreateResponse.php b/sdks/php/src/Model/AccountCreateResponse.php
index 619bf49a3..bd28ca3e5 100644
--- a/sdks/php/src/Model/AccountCreateResponse.php
+++ b/sdks/php/src/Model/AccountCreateResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountCreateResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountGetResponse.php b/sdks/php/src/Model/AccountGetResponse.php
index 5005bc421..fa4404d96 100644
--- a/sdks/php/src/Model/AccountGetResponse.php
+++ b/sdks/php/src/Model/AccountGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountResponse.php b/sdks/php/src/Model/AccountResponse.php
index 6c3370ef1..251546bab 100644
--- a/sdks/php/src/Model/AccountResponse.php
+++ b/sdks/php/src/Model/AccountResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountResponseQuotas.php b/sdks/php/src/Model/AccountResponseQuotas.php
index 119733b99..467ee663d 100644
--- a/sdks/php/src/Model/AccountResponseQuotas.php
+++ b/sdks/php/src/Model/AccountResponseQuotas.php
@@ -38,7 +38,7 @@
* @category Class
* @description Details concerning remaining monthly quotas.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountResponseQuotas implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountResponseUsage.php b/sdks/php/src/Model/AccountResponseUsage.php
index 90cb9bb1c..813c9120e 100644
--- a/sdks/php/src/Model/AccountResponseUsage.php
+++ b/sdks/php/src/Model/AccountResponseUsage.php
@@ -38,7 +38,7 @@
* @category Class
* @description Details concerning monthly usage
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountResponseUsage implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountUpdateRequest.php b/sdks/php/src/Model/AccountUpdateRequest.php
index cc7e7df52..47b5c378c 100644
--- a/sdks/php/src/Model/AccountUpdateRequest.php
+++ b/sdks/php/src/Model/AccountUpdateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountUpdateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountVerifyRequest.php b/sdks/php/src/Model/AccountVerifyRequest.php
index 8383f6599..6b1f18897 100644
--- a/sdks/php/src/Model/AccountVerifyRequest.php
+++ b/sdks/php/src/Model/AccountVerifyRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountVerifyRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountVerifyResponse.php b/sdks/php/src/Model/AccountVerifyResponse.php
index 359be63d7..6d013466c 100644
--- a/sdks/php/src/Model/AccountVerifyResponse.php
+++ b/sdks/php/src/Model/AccountVerifyResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountVerifyResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/AccountVerifyResponseAccount.php b/sdks/php/src/Model/AccountVerifyResponseAccount.php
index 2c4bf22b3..12eb76917 100644
--- a/sdks/php/src/Model/AccountVerifyResponseAccount.php
+++ b/sdks/php/src/Model/AccountVerifyResponseAccount.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class AccountVerifyResponseAccount implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppCreateRequest.php b/sdks/php/src/Model/ApiAppCreateRequest.php
index 39c1c9ace..87ca45abf 100644
--- a/sdks/php/src/Model/ApiAppCreateRequest.php
+++ b/sdks/php/src/Model/ApiAppCreateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppCreateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppGetResponse.php b/sdks/php/src/Model/ApiAppGetResponse.php
index 3d9dc5d0a..97f83a440 100644
--- a/sdks/php/src/Model/ApiAppGetResponse.php
+++ b/sdks/php/src/Model/ApiAppGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppListResponse.php b/sdks/php/src/Model/ApiAppListResponse.php
index 02e2483e9..02fd9cb6c 100644
--- a/sdks/php/src/Model/ApiAppListResponse.php
+++ b/sdks/php/src/Model/ApiAppListResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppListResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppResponse.php b/sdks/php/src/Model/ApiAppResponse.php
index c283d86fb..1cc11bec7 100644
--- a/sdks/php/src/Model/ApiAppResponse.php
+++ b/sdks/php/src/Model/ApiAppResponse.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains information about an API App.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppResponseOAuth.php b/sdks/php/src/Model/ApiAppResponseOAuth.php
index 6c84b43c6..a72ba7137 100644
--- a/sdks/php/src/Model/ApiAppResponseOAuth.php
+++ b/sdks/php/src/Model/ApiAppResponseOAuth.php
@@ -39,7 +39,7 @@
* @category Class
* @description An object describing the app's OAuth properties, or null if OAuth is not configured for the app.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppResponseOAuth implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppResponseOptions.php b/sdks/php/src/Model/ApiAppResponseOptions.php
index 46466cb77..94e0cf604 100644
--- a/sdks/php/src/Model/ApiAppResponseOptions.php
+++ b/sdks/php/src/Model/ApiAppResponseOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description An object with options that override account settings.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppResponseOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppResponseOwnerAccount.php b/sdks/php/src/Model/ApiAppResponseOwnerAccount.php
index db9e8e0a0..438799c08 100644
--- a/sdks/php/src/Model/ApiAppResponseOwnerAccount.php
+++ b/sdks/php/src/Model/ApiAppResponseOwnerAccount.php
@@ -39,7 +39,7 @@
* @category Class
* @description An object describing the app's owner
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppResponseOwnerAccount implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppResponseWhiteLabelingOptions.php b/sdks/php/src/Model/ApiAppResponseWhiteLabelingOptions.php
index b010c59f0..64c21a391 100644
--- a/sdks/php/src/Model/ApiAppResponseWhiteLabelingOptions.php
+++ b/sdks/php/src/Model/ApiAppResponseWhiteLabelingOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description An object with options to customize the app's signer page
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppResponseWhiteLabelingOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ApiAppUpdateRequest.php b/sdks/php/src/Model/ApiAppUpdateRequest.php
index 54f0a8c4e..2f0ba9565 100644
--- a/sdks/php/src/Model/ApiAppUpdateRequest.php
+++ b/sdks/php/src/Model/ApiAppUpdateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ApiAppUpdateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/BulkSendJobGetResponse.php b/sdks/php/src/Model/BulkSendJobGetResponse.php
index a0699b46f..affadf1f2 100644
--- a/sdks/php/src/Model/BulkSendJobGetResponse.php
+++ b/sdks/php/src/Model/BulkSendJobGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class BulkSendJobGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/BulkSendJobGetResponseSignatureRequests.php b/sdks/php/src/Model/BulkSendJobGetResponseSignatureRequests.php
index a68be1c16..f40d42b60 100644
--- a/sdks/php/src/Model/BulkSendJobGetResponseSignatureRequests.php
+++ b/sdks/php/src/Model/BulkSendJobGetResponseSignatureRequests.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class BulkSendJobGetResponseSignatureRequests implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/BulkSendJobListResponse.php b/sdks/php/src/Model/BulkSendJobListResponse.php
index ee12f4f40..0b4d49484 100644
--- a/sdks/php/src/Model/BulkSendJobListResponse.php
+++ b/sdks/php/src/Model/BulkSendJobListResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class BulkSendJobListResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/BulkSendJobResponse.php b/sdks/php/src/Model/BulkSendJobResponse.php
index 987a9bd02..a503c7546 100644
--- a/sdks/php/src/Model/BulkSendJobResponse.php
+++ b/sdks/php/src/Model/BulkSendJobResponse.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains information about the BulkSendJob such as when it was created and how many signature requests are queued.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class BulkSendJobResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/BulkSendJobSendResponse.php b/sdks/php/src/Model/BulkSendJobSendResponse.php
index 945a1a518..b503daa06 100644
--- a/sdks/php/src/Model/BulkSendJobSendResponse.php
+++ b/sdks/php/src/Model/BulkSendJobSendResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class BulkSendJobSendResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EmbeddedEditUrlRequest.php b/sdks/php/src/Model/EmbeddedEditUrlRequest.php
index d5252f0e2..4a76a2c94 100644
--- a/sdks/php/src/Model/EmbeddedEditUrlRequest.php
+++ b/sdks/php/src/Model/EmbeddedEditUrlRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EmbeddedEditUrlRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EmbeddedEditUrlResponse.php b/sdks/php/src/Model/EmbeddedEditUrlResponse.php
index 865768dd7..7a18ae864 100644
--- a/sdks/php/src/Model/EmbeddedEditUrlResponse.php
+++ b/sdks/php/src/Model/EmbeddedEditUrlResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EmbeddedEditUrlResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EmbeddedEditUrlResponseEmbedded.php b/sdks/php/src/Model/EmbeddedEditUrlResponseEmbedded.php
index bda80cfb8..c02df3186 100644
--- a/sdks/php/src/Model/EmbeddedEditUrlResponseEmbedded.php
+++ b/sdks/php/src/Model/EmbeddedEditUrlResponseEmbedded.php
@@ -39,7 +39,7 @@
* @category Class
* @description An embedded template object.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EmbeddedEditUrlResponseEmbedded implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EmbeddedSignUrlResponse.php b/sdks/php/src/Model/EmbeddedSignUrlResponse.php
index 8b2c9af81..2162bc5cd 100644
--- a/sdks/php/src/Model/EmbeddedSignUrlResponse.php
+++ b/sdks/php/src/Model/EmbeddedSignUrlResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EmbeddedSignUrlResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EmbeddedSignUrlResponseEmbedded.php b/sdks/php/src/Model/EmbeddedSignUrlResponseEmbedded.php
index 54fffcbc2..d4f1b1cbf 100644
--- a/sdks/php/src/Model/EmbeddedSignUrlResponseEmbedded.php
+++ b/sdks/php/src/Model/EmbeddedSignUrlResponseEmbedded.php
@@ -39,7 +39,7 @@
* @category Class
* @description An object that contains necessary information to set up embedded signing.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EmbeddedSignUrlResponseEmbedded implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ErrorResponse.php b/sdks/php/src/Model/ErrorResponse.php
index 108b8e6c7..17faeebd3 100644
--- a/sdks/php/src/Model/ErrorResponse.php
+++ b/sdks/php/src/Model/ErrorResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ErrorResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ErrorResponseError.php b/sdks/php/src/Model/ErrorResponseError.php
index 6bb4b8620..65c09c1dc 100644
--- a/sdks/php/src/Model/ErrorResponseError.php
+++ b/sdks/php/src/Model/ErrorResponseError.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains information about an error that occurred.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ErrorResponseError implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EventCallbackRequest.php b/sdks/php/src/Model/EventCallbackRequest.php
index a3b4a183f..894600a10 100644
--- a/sdks/php/src/Model/EventCallbackRequest.php
+++ b/sdks/php/src/Model/EventCallbackRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EventCallbackRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EventCallbackRequestEvent.php b/sdks/php/src/Model/EventCallbackRequestEvent.php
index 2501307ce..98683c88c 100644
--- a/sdks/php/src/Model/EventCallbackRequestEvent.php
+++ b/sdks/php/src/Model/EventCallbackRequestEvent.php
@@ -39,7 +39,7 @@
* @category Class
* @description Basic information about the event that occurred.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EventCallbackRequestEvent implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/EventCallbackRequestEventMetadata.php b/sdks/php/src/Model/EventCallbackRequestEventMetadata.php
index 9116a543c..a738a6810 100644
--- a/sdks/php/src/Model/EventCallbackRequestEventMetadata.php
+++ b/sdks/php/src/Model/EventCallbackRequestEventMetadata.php
@@ -38,7 +38,7 @@
* @category Class
* @description Specific metadata about the event.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class EventCallbackRequestEventMetadata implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxGetResponse.php b/sdks/php/src/Model/FaxGetResponse.php
index ee85f3d1d..366456942 100644
--- a/sdks/php/src/Model/FaxGetResponse.php
+++ b/sdks/php/src/Model/FaxGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineAddUserRequest.php b/sdks/php/src/Model/FaxLineAddUserRequest.php
index 4bada1b28..740aad78d 100644
--- a/sdks/php/src/Model/FaxLineAddUserRequest.php
+++ b/sdks/php/src/Model/FaxLineAddUserRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineAddUserRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineAreaCodeGetResponse.php b/sdks/php/src/Model/FaxLineAreaCodeGetResponse.php
index c4e650c69..aa6b96bd7 100644
--- a/sdks/php/src/Model/FaxLineAreaCodeGetResponse.php
+++ b/sdks/php/src/Model/FaxLineAreaCodeGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineAreaCodeGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineCreateRequest.php b/sdks/php/src/Model/FaxLineCreateRequest.php
index 1f9504ac3..0cfac5e18 100644
--- a/sdks/php/src/Model/FaxLineCreateRequest.php
+++ b/sdks/php/src/Model/FaxLineCreateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineCreateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineDeleteRequest.php b/sdks/php/src/Model/FaxLineDeleteRequest.php
index c3946e2cc..759313a8d 100644
--- a/sdks/php/src/Model/FaxLineDeleteRequest.php
+++ b/sdks/php/src/Model/FaxLineDeleteRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineDeleteRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineListResponse.php b/sdks/php/src/Model/FaxLineListResponse.php
index 904c477ae..324078fde 100644
--- a/sdks/php/src/Model/FaxLineListResponse.php
+++ b/sdks/php/src/Model/FaxLineListResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineListResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineRemoveUserRequest.php b/sdks/php/src/Model/FaxLineRemoveUserRequest.php
index 43bcce54d..12336cdc0 100644
--- a/sdks/php/src/Model/FaxLineRemoveUserRequest.php
+++ b/sdks/php/src/Model/FaxLineRemoveUserRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineRemoveUserRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineResponse.php b/sdks/php/src/Model/FaxLineResponse.php
index 7b84af2f9..0a3eaca57 100644
--- a/sdks/php/src/Model/FaxLineResponse.php
+++ b/sdks/php/src/Model/FaxLineResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxLineResponseFaxLine.php b/sdks/php/src/Model/FaxLineResponseFaxLine.php
index bde887583..c48c13a4f 100644
--- a/sdks/php/src/Model/FaxLineResponseFaxLine.php
+++ b/sdks/php/src/Model/FaxLineResponseFaxLine.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxLineResponseFaxLine implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxListResponse.php b/sdks/php/src/Model/FaxListResponse.php
index bb402e895..e0b18f042 100644
--- a/sdks/php/src/Model/FaxListResponse.php
+++ b/sdks/php/src/Model/FaxListResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxListResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxResponse.php b/sdks/php/src/Model/FaxResponse.php
index ebe08f475..3db2cd08e 100644
--- a/sdks/php/src/Model/FaxResponse.php
+++ b/sdks/php/src/Model/FaxResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxResponseTransmission.php b/sdks/php/src/Model/FaxResponseTransmission.php
index 440773960..1a7e4e83b 100644
--- a/sdks/php/src/Model/FaxResponseTransmission.php
+++ b/sdks/php/src/Model/FaxResponseTransmission.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxResponseTransmission implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FaxSendRequest.php b/sdks/php/src/Model/FaxSendRequest.php
index 4923a515a..6bcbf952b 100644
--- a/sdks/php/src/Model/FaxSendRequest.php
+++ b/sdks/php/src/Model/FaxSendRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FaxSendRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FileResponse.php b/sdks/php/src/Model/FileResponse.php
index 82f84a632..3deb3bdb3 100644
--- a/sdks/php/src/Model/FileResponse.php
+++ b/sdks/php/src/Model/FileResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FileResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/FileResponseDataUri.php b/sdks/php/src/Model/FileResponseDataUri.php
index 98e37dda6..a18618abc 100644
--- a/sdks/php/src/Model/FileResponseDataUri.php
+++ b/sdks/php/src/Model/FileResponseDataUri.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class FileResponseDataUri implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ListInfoResponse.php b/sdks/php/src/Model/ListInfoResponse.php
index a036c6d06..0c0fc96fc 100644
--- a/sdks/php/src/Model/ListInfoResponse.php
+++ b/sdks/php/src/Model/ListInfoResponse.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains pagination information about the data returned.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ListInfoResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/OAuthTokenGenerateRequest.php b/sdks/php/src/Model/OAuthTokenGenerateRequest.php
index c8e76099b..8574b0f61 100644
--- a/sdks/php/src/Model/OAuthTokenGenerateRequest.php
+++ b/sdks/php/src/Model/OAuthTokenGenerateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class OAuthTokenGenerateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/OAuthTokenRefreshRequest.php b/sdks/php/src/Model/OAuthTokenRefreshRequest.php
index d92365095..8736361b2 100644
--- a/sdks/php/src/Model/OAuthTokenRefreshRequest.php
+++ b/sdks/php/src/Model/OAuthTokenRefreshRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class OAuthTokenRefreshRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
@@ -391,7 +391,7 @@ public function getClientId()
/**
* Sets client_id
*
- * @param string|null $client_id The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * @param string|null $client_id The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
*
* @return self
*/
@@ -418,7 +418,7 @@ public function getClientSecret()
/**
* Sets client_secret
*
- * @param string|null $client_secret The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the \"Client Credentials Required\" setting is enabled for token refresh; optional if disabled.
+ * @param string|null $client_secret The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
*
* @return self
*/
diff --git a/sdks/php/src/Model/OAuthTokenResponse.php b/sdks/php/src/Model/OAuthTokenResponse.php
index 72b899309..9b87870ab 100644
--- a/sdks/php/src/Model/OAuthTokenResponse.php
+++ b/sdks/php/src/Model/OAuthTokenResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class OAuthTokenResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ReportCreateRequest.php b/sdks/php/src/Model/ReportCreateRequest.php
index 58af6688d..a52ef7b01 100644
--- a/sdks/php/src/Model/ReportCreateRequest.php
+++ b/sdks/php/src/Model/ReportCreateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ReportCreateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ReportCreateResponse.php b/sdks/php/src/Model/ReportCreateResponse.php
index bc712c962..e6972d57a 100644
--- a/sdks/php/src/Model/ReportCreateResponse.php
+++ b/sdks/php/src/Model/ReportCreateResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ReportCreateResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/ReportResponse.php b/sdks/php/src/Model/ReportResponse.php
index f64b92272..29122ed4e 100644
--- a/sdks/php/src/Model/ReportResponse.php
+++ b/sdks/php/src/Model/ReportResponse.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains information about the report request.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class ReportResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.php
index 1874fd232..b5f51a559 100644
--- a/sdks/php/src/Model/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestBulkCreateEmbeddedWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestBulkSendWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestBulkSendWithTemplateRequest.php
index 1e85b4445..3ad0b37af 100644
--- a/sdks/php/src/Model/SignatureRequestBulkSendWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestBulkSendWithTemplateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestBulkSendWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestCreateEmbeddedRequest.php b/sdks/php/src/Model/SignatureRequestCreateEmbeddedRequest.php
index badc3ea00..1a7cda140 100644
--- a/sdks/php/src/Model/SignatureRequestCreateEmbeddedRequest.php
+++ b/sdks/php/src/Model/SignatureRequestCreateEmbeddedRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestCreateEmbeddedRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.php
index 4f5b84e26..b90396231 100644
--- a/sdks/php/src/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestCreateEmbeddedWithTemplateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestCreateEmbeddedWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestEditEmbeddedRequest.php b/sdks/php/src/Model/SignatureRequestEditEmbeddedRequest.php
index cb0190f9c..2795f5a2b 100644
--- a/sdks/php/src/Model/SignatureRequestEditEmbeddedRequest.php
+++ b/sdks/php/src/Model/SignatureRequestEditEmbeddedRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestEditEmbeddedRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestEditEmbeddedWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestEditEmbeddedWithTemplateRequest.php
index ac58ec089..05fbee5e9 100644
--- a/sdks/php/src/Model/SignatureRequestEditEmbeddedWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestEditEmbeddedWithTemplateRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestEditEmbeddedWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestEditRequest.php b/sdks/php/src/Model/SignatureRequestEditRequest.php
index 131a3e4c4..8763f7dc6 100644
--- a/sdks/php/src/Model/SignatureRequestEditRequest.php
+++ b/sdks/php/src/Model/SignatureRequestEditRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestEditRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestEditWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestEditWithTemplateRequest.php
index c7f839f75..b27cec8ee 100644
--- a/sdks/php/src/Model/SignatureRequestEditWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestEditWithTemplateRequest.php
@@ -40,7 +40,7 @@
* @category Class
* @description
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestEditWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestGetResponse.php b/sdks/php/src/Model/SignatureRequestGetResponse.php
index d976e4932..341dbe531 100644
--- a/sdks/php/src/Model/SignatureRequestGetResponse.php
+++ b/sdks/php/src/Model/SignatureRequestGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestListResponse.php b/sdks/php/src/Model/SignatureRequestListResponse.php
index 5d9a26926..f67e7ed94 100644
--- a/sdks/php/src/Model/SignatureRequestListResponse.php
+++ b/sdks/php/src/Model/SignatureRequestListResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestListResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestRemindRequest.php b/sdks/php/src/Model/SignatureRequestRemindRequest.php
index 1c5eaefbd..18e8e89fc 100644
--- a/sdks/php/src/Model/SignatureRequestRemindRequest.php
+++ b/sdks/php/src/Model/SignatureRequestRemindRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestRemindRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestResponse.php b/sdks/php/src/Model/SignatureRequestResponse.php
index 16a8fccf3..6993121e8 100644
--- a/sdks/php/src/Model/SignatureRequestResponse.php
+++ b/sdks/php/src/Model/SignatureRequestResponse.php
@@ -39,7 +39,7 @@
* @category Class
* @description Contains information about a signature request.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseAttachment.php b/sdks/php/src/Model/SignatureRequestResponseAttachment.php
index 8a91a0b96..4d2c1709b 100644
--- a/sdks/php/src/Model/SignatureRequestResponseAttachment.php
+++ b/sdks/php/src/Model/SignatureRequestResponseAttachment.php
@@ -39,7 +39,7 @@
* @category Class
* @description Signer attachments.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseAttachment implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseCustomFieldBase.php b/sdks/php/src/Model/SignatureRequestResponseCustomFieldBase.php
index 9d88d03f9..ef7c53b14 100644
--- a/sdks/php/src/Model/SignatureRequestResponseCustomFieldBase.php
+++ b/sdks/php/src/Model/SignatureRequestResponseCustomFieldBase.php
@@ -39,7 +39,7 @@
* @category Class
* @description An array of Custom Field objects containing the name and type of each custom field. * Text Field uses `SignatureRequestResponseCustomFieldText` * Checkbox Field uses `SignatureRequestResponseCustomFieldCheckbox`
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseCustomFieldBase implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseCustomFieldCheckbox.php b/sdks/php/src/Model/SignatureRequestResponseCustomFieldCheckbox.php
index 983134b39..644d9b0ed 100644
--- a/sdks/php/src/Model/SignatureRequestResponseCustomFieldCheckbox.php
+++ b/sdks/php/src/Model/SignatureRequestResponseCustomFieldCheckbox.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SignatureRequestResponseCustomFieldBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseCustomFieldCheckbox extends SignatureRequestResponseCustomFieldBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseCustomFieldText.php b/sdks/php/src/Model/SignatureRequestResponseCustomFieldText.php
index 6c4a94396..4bc5e3107 100644
--- a/sdks/php/src/Model/SignatureRequestResponseCustomFieldText.php
+++ b/sdks/php/src/Model/SignatureRequestResponseCustomFieldText.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SignatureRequestResponseCustomFieldBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseCustomFieldText extends SignatureRequestResponseCustomFieldBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataBase.php b/sdks/php/src/Model/SignatureRequestResponseDataBase.php
index 063b8a164..376d10302 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataBase.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataBase.php
@@ -39,7 +39,7 @@
* @category Class
* @description An array of form field objects containing the name, value, and type of each textbox or checkmark field filled in by the signers.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataBase implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueCheckbox.php b/sdks/php/src/Model/SignatureRequestResponseDataValueCheckbox.php
index e295a3a78..514dc1cf5 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueCheckbox.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueCheckbox.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueCheckbox extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueCheckboxMerge.php b/sdks/php/src/Model/SignatureRequestResponseDataValueCheckboxMerge.php
index bb808a601..6d2125da1 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueCheckboxMerge.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueCheckboxMerge.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueCheckboxMerge extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueDateSigned.php b/sdks/php/src/Model/SignatureRequestResponseDataValueDateSigned.php
index b422b6f5f..9de94dbcc 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueDateSigned.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueDateSigned.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueDateSigned extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueDropdown.php b/sdks/php/src/Model/SignatureRequestResponseDataValueDropdown.php
index e91201360..554a523a5 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueDropdown.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueDropdown.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueDropdown extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueInitials.php b/sdks/php/src/Model/SignatureRequestResponseDataValueInitials.php
index 9cd07e08b..1dc12cd21 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueInitials.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueInitials.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueInitials extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueRadio.php b/sdks/php/src/Model/SignatureRequestResponseDataValueRadio.php
index fcd4570eb..a4f6b0013 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueRadio.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueRadio.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueRadio extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueSignature.php b/sdks/php/src/Model/SignatureRequestResponseDataValueSignature.php
index 223ca960f..f166fbc05 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueSignature.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueSignature.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueSignature extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueText.php b/sdks/php/src/Model/SignatureRequestResponseDataValueText.php
index 7c1c97b22..efdc08a8e 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueText.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueText.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueText extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseDataValueTextMerge.php b/sdks/php/src/Model/SignatureRequestResponseDataValueTextMerge.php
index d8ea246f6..ae1221e81 100644
--- a/sdks/php/src/Model/SignatureRequestResponseDataValueTextMerge.php
+++ b/sdks/php/src/Model/SignatureRequestResponseDataValueTextMerge.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -36,7 +37,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseDataValueTextMerge extends SignatureRequestResponseDataBase
{
diff --git a/sdks/php/src/Model/SignatureRequestResponseSignatures.php b/sdks/php/src/Model/SignatureRequestResponseSignatures.php
index fa7653fa2..b8271d499 100644
--- a/sdks/php/src/Model/SignatureRequestResponseSignatures.php
+++ b/sdks/php/src/Model/SignatureRequestResponseSignatures.php
@@ -39,7 +39,7 @@
* @category Class
* @description An array of signature objects, 1 for each signer.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestResponseSignatures implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestSendRequest.php b/sdks/php/src/Model/SignatureRequestSendRequest.php
index f381a8d85..1d4379e53 100644
--- a/sdks/php/src/Model/SignatureRequestSendRequest.php
+++ b/sdks/php/src/Model/SignatureRequestSendRequest.php
@@ -39,7 +39,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestSendRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestSendWithTemplateRequest.php b/sdks/php/src/Model/SignatureRequestSendWithTemplateRequest.php
index 6f4cd28ff..a353109aa 100644
--- a/sdks/php/src/Model/SignatureRequestSendWithTemplateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestSendWithTemplateRequest.php
@@ -40,7 +40,7 @@
* @category Class
* @description
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestSendWithTemplateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SignatureRequestUpdateRequest.php b/sdks/php/src/Model/SignatureRequestUpdateRequest.php
index c946720ca..dd412e8b1 100644
--- a/sdks/php/src/Model/SignatureRequestUpdateRequest.php
+++ b/sdks/php/src/Model/SignatureRequestUpdateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SignatureRequestUpdateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubAttachment.php b/sdks/php/src/Model/SubAttachment.php
index ab6bfb504..0d34a8068 100644
--- a/sdks/php/src/Model/SubAttachment.php
+++ b/sdks/php/src/Model/SubAttachment.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubAttachment implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubBulkSignerList.php b/sdks/php/src/Model/SubBulkSignerList.php
index 1ac8d7818..795441cb3 100644
--- a/sdks/php/src/Model/SubBulkSignerList.php
+++ b/sdks/php/src/Model/SubBulkSignerList.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubBulkSignerList implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubBulkSignerListCustomField.php b/sdks/php/src/Model/SubBulkSignerListCustomField.php
index 1f1580517..c614f52d0 100644
--- a/sdks/php/src/Model/SubBulkSignerListCustomField.php
+++ b/sdks/php/src/Model/SubBulkSignerListCustomField.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubBulkSignerListCustomField implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubCC.php b/sdks/php/src/Model/SubCC.php
index 2febcebb2..a2ddd60af 100644
--- a/sdks/php/src/Model/SubCC.php
+++ b/sdks/php/src/Model/SubCC.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubCC implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubCustomField.php b/sdks/php/src/Model/SubCustomField.php
index 4cf6dddee..6bb11a51e 100644
--- a/sdks/php/src/Model/SubCustomField.php
+++ b/sdks/php/src/Model/SubCustomField.php
@@ -39,7 +39,7 @@
* @category Class
* @description When used together with merge fields, `custom_fields` allows users to add pre-filled data to their signature requests. Pre-filled data can be used with \"send-once\" signature requests by adding merge fields with `form_fields_per_document` or [Text Tags](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) while passing values back with `custom_fields` together in one API call. For using pre-filled on repeatable signature requests, merge fields are added to templates in the Dropbox Sign UI or by calling [/template/create_embedded_draft](/api/reference/operation/templateCreateEmbeddedDraft) and then passing `custom_fields` on subsequent signature requests referencing that template.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubCustomField implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubEditorOptions.php b/sdks/php/src/Model/SubEditorOptions.php
index dc6d1e59a..82cd02d9a 100644
--- a/sdks/php/src/Model/SubEditorOptions.php
+++ b/sdks/php/src/Model/SubEditorOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description This allows the requester to specify editor options when a preparing a document
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubEditorOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFieldOptions.php b/sdks/php/src/Model/SubFieldOptions.php
index a74afbd7b..3fa684abe 100644
--- a/sdks/php/src/Model/SubFieldOptions.php
+++ b/sdks/php/src/Model/SubFieldOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description This allows the requester to specify field options for a signature request.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFieldOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldGroup.php b/sdks/php/src/Model/SubFormFieldGroup.php
index ba06d9be9..d9a8d0dbf 100644
--- a/sdks/php/src/Model/SubFormFieldGroup.php
+++ b/sdks/php/src/Model/SubFormFieldGroup.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldGroup implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldRule.php b/sdks/php/src/Model/SubFormFieldRule.php
index 41c47e642..0f42be213 100644
--- a/sdks/php/src/Model/SubFormFieldRule.php
+++ b/sdks/php/src/Model/SubFormFieldRule.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldRule implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldRuleAction.php b/sdks/php/src/Model/SubFormFieldRuleAction.php
index 39e7c0c87..cb9926586 100644
--- a/sdks/php/src/Model/SubFormFieldRuleAction.php
+++ b/sdks/php/src/Model/SubFormFieldRuleAction.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldRuleAction implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldRuleTrigger.php b/sdks/php/src/Model/SubFormFieldRuleTrigger.php
index 75fecd35c..9ca39534f 100644
--- a/sdks/php/src/Model/SubFormFieldRuleTrigger.php
+++ b/sdks/php/src/Model/SubFormFieldRuleTrigger.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldRuleTrigger implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentBase.php b/sdks/php/src/Model/SubFormFieldsPerDocumentBase.php
index 085791ea9..c80d788e9 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentBase.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentBase.php
@@ -39,7 +39,7 @@
* @category Class
* @description The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).) **NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types. * Text Field use `SubFormFieldsPerDocumentText` * Dropdown Field use `SubFormFieldsPerDocumentDropdown` * Hyperlink Field use `SubFormFieldsPerDocumentHyperlink` * Checkbox Field use `SubFormFieldsPerDocumentCheckbox` * Radio Field use `SubFormFieldsPerDocumentRadio` * Signature Field use `SubFormFieldsPerDocumentSignature` * Date Signed Field use `SubFormFieldsPerDocumentDateSigned` * Initials Field use `SubFormFieldsPerDocumentInitials` * Text Merge Field use `SubFormFieldsPerDocumentTextMerge` * Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge`
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentBase implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentCheckbox.php b/sdks/php/src/Model/SubFormFieldsPerDocumentCheckbox.php
index c7610dfe4..228dfadc2 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentCheckbox.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentCheckbox.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentCheckbox extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentCheckboxMerge.php b/sdks/php/src/Model/SubFormFieldsPerDocumentCheckboxMerge.php
index 24ddfbfdd..9f60bf61c 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentCheckboxMerge.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentCheckboxMerge.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentCheckboxMerge extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentDateSigned.php b/sdks/php/src/Model/SubFormFieldsPerDocumentDateSigned.php
index 1e917ae01..d7b97704b 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentDateSigned.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentDateSigned.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentDateSigned extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentDropdown.php b/sdks/php/src/Model/SubFormFieldsPerDocumentDropdown.php
index f26d663f3..e57b50b92 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentDropdown.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentDropdown.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentDropdown extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentHyperlink.php b/sdks/php/src/Model/SubFormFieldsPerDocumentHyperlink.php
index f9c93531f..fad1fa883 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentHyperlink.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentHyperlink.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentHyperlink extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentInitials.php b/sdks/php/src/Model/SubFormFieldsPerDocumentInitials.php
index d74b4ad1a..1afccce6f 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentInitials.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentInitials.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentInitials extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentRadio.php b/sdks/php/src/Model/SubFormFieldsPerDocumentRadio.php
index 962382cc2..6a2961055 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentRadio.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentRadio.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentRadio extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentSignature.php b/sdks/php/src/Model/SubFormFieldsPerDocumentSignature.php
index b4c228bb6..fe944e6a9 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentSignature.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentSignature.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentSignature extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentText.php b/sdks/php/src/Model/SubFormFieldsPerDocumentText.php
index 1cb1f6e8f..90794efef 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentText.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentText.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentText extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubFormFieldsPerDocumentTextMerge.php b/sdks/php/src/Model/SubFormFieldsPerDocumentTextMerge.php
index 2f1fb28c4..4fe9e34cf 100644
--- a/sdks/php/src/Model/SubFormFieldsPerDocumentTextMerge.php
+++ b/sdks/php/src/Model/SubFormFieldsPerDocumentTextMerge.php
@@ -27,6 +27,7 @@
namespace Dropbox\Sign\Model;
+use ArrayAccess;
use Dropbox\Sign\ObjectSerializer;
use InvalidArgumentException;
use ReturnTypeWillChange;
@@ -37,7 +38,7 @@
* @category Class
* @description This class extends `SubFormFieldsPerDocumentBase`.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubFormFieldsPerDocumentTextMerge extends SubFormFieldsPerDocumentBase
{
diff --git a/sdks/php/src/Model/SubMergeField.php b/sdks/php/src/Model/SubMergeField.php
index 3b72a78ab..2880c9a3e 100644
--- a/sdks/php/src/Model/SubMergeField.php
+++ b/sdks/php/src/Model/SubMergeField.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubMergeField implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubOAuth.php b/sdks/php/src/Model/SubOAuth.php
index 39c24d80e..ea8ef7c8a 100644
--- a/sdks/php/src/Model/SubOAuth.php
+++ b/sdks/php/src/Model/SubOAuth.php
@@ -39,7 +39,7 @@
* @category Class
* @description OAuth related parameters.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubOAuth implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubOptions.php b/sdks/php/src/Model/SubOptions.php
index 4493687d0..a3e433ec1 100644
--- a/sdks/php/src/Model/SubOptions.php
+++ b/sdks/php/src/Model/SubOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description Additional options supported by API App.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubSignatureRequestGroupedSigners.php b/sdks/php/src/Model/SubSignatureRequestGroupedSigners.php
index 5405a1142..98a9cc866 100644
--- a/sdks/php/src/Model/SubSignatureRequestGroupedSigners.php
+++ b/sdks/php/src/Model/SubSignatureRequestGroupedSigners.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubSignatureRequestGroupedSigners implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubSignatureRequestSigner.php b/sdks/php/src/Model/SubSignatureRequestSigner.php
index 23043b15a..e64799e6a 100644
--- a/sdks/php/src/Model/SubSignatureRequestSigner.php
+++ b/sdks/php/src/Model/SubSignatureRequestSigner.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubSignatureRequestSigner implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubSignatureRequestTemplateSigner.php b/sdks/php/src/Model/SubSignatureRequestTemplateSigner.php
index caf7d9078..adcdf8809 100644
--- a/sdks/php/src/Model/SubSignatureRequestTemplateSigner.php
+++ b/sdks/php/src/Model/SubSignatureRequestTemplateSigner.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubSignatureRequestTemplateSigner implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubSigningOptions.php b/sdks/php/src/Model/SubSigningOptions.php
index bdb9f4ecf..51185a7ac 100644
--- a/sdks/php/src/Model/SubSigningOptions.php
+++ b/sdks/php/src/Model/SubSigningOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description This allows the requester to specify the types allowed for creating a signature. **NOTE:** If `signing_options` are not defined in the request, the allowed types will default to those specified in the account settings.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubSigningOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubTeamResponse.php b/sdks/php/src/Model/SubTeamResponse.php
index def81afc0..127f49e77 100644
--- a/sdks/php/src/Model/SubTeamResponse.php
+++ b/sdks/php/src/Model/SubTeamResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubTeamResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubTemplateRole.php b/sdks/php/src/Model/SubTemplateRole.php
index 489a376a5..835a1eba9 100644
--- a/sdks/php/src/Model/SubTemplateRole.php
+++ b/sdks/php/src/Model/SubTemplateRole.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubTemplateRole implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubUnclaimedDraftSigner.php b/sdks/php/src/Model/SubUnclaimedDraftSigner.php
index 4d9b3ec8f..2a5db01dc 100644
--- a/sdks/php/src/Model/SubUnclaimedDraftSigner.php
+++ b/sdks/php/src/Model/SubUnclaimedDraftSigner.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubUnclaimedDraftSigner implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubUnclaimedDraftTemplateSigner.php b/sdks/php/src/Model/SubUnclaimedDraftTemplateSigner.php
index 52544c118..9b9c8241c 100644
--- a/sdks/php/src/Model/SubUnclaimedDraftTemplateSigner.php
+++ b/sdks/php/src/Model/SubUnclaimedDraftTemplateSigner.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubUnclaimedDraftTemplateSigner implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/SubWhiteLabelingOptions.php b/sdks/php/src/Model/SubWhiteLabelingOptions.php
index 5eafd34ad..f4ce70700 100644
--- a/sdks/php/src/Model/SubWhiteLabelingOptions.php
+++ b/sdks/php/src/Model/SubWhiteLabelingOptions.php
@@ -39,7 +39,7 @@
* @category Class
* @description An array of elements and values serialized to a string, to be used to customize the app's signer page. (Only applies to some API plans) Take a look at our [white labeling guide](https://developers.hellosign.com/api/reference/premium-branding/) to learn more.
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class SubWhiteLabelingOptions implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamAddMemberRequest.php b/sdks/php/src/Model/TeamAddMemberRequest.php
index c1fbe01a8..146ae4f9c 100644
--- a/sdks/php/src/Model/TeamAddMemberRequest.php
+++ b/sdks/php/src/Model/TeamAddMemberRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamAddMemberRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamCreateRequest.php b/sdks/php/src/Model/TeamCreateRequest.php
index 791ab93b5..452badc96 100644
--- a/sdks/php/src/Model/TeamCreateRequest.php
+++ b/sdks/php/src/Model/TeamCreateRequest.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamCreateRequest implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamGetInfoResponse.php b/sdks/php/src/Model/TeamGetInfoResponse.php
index 58c58f6dd..d14d4aa98 100644
--- a/sdks/php/src/Model/TeamGetInfoResponse.php
+++ b/sdks/php/src/Model/TeamGetInfoResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamGetInfoResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamGetResponse.php b/sdks/php/src/Model/TeamGetResponse.php
index 05624a166..28d96ff9e 100644
--- a/sdks/php/src/Model/TeamGetResponse.php
+++ b/sdks/php/src/Model/TeamGetResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamGetResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamInfoResponse.php b/sdks/php/src/Model/TeamInfoResponse.php
index 7deb94ad8..13499bb6c 100644
--- a/sdks/php/src/Model/TeamInfoResponse.php
+++ b/sdks/php/src/Model/TeamInfoResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamInfoResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamInviteResponse.php b/sdks/php/src/Model/TeamInviteResponse.php
index b9d91658c..78dbf9222 100644
--- a/sdks/php/src/Model/TeamInviteResponse.php
+++ b/sdks/php/src/Model/TeamInviteResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamInviteResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamInvitesResponse.php b/sdks/php/src/Model/TeamInvitesResponse.php
index 5ad2014f0..2ee6b901a 100644
--- a/sdks/php/src/Model/TeamInvitesResponse.php
+++ b/sdks/php/src/Model/TeamInvitesResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess
+ * @implements ArrayAccess
*/
class TeamInvitesResponse implements ModelInterface, ArrayAccess, JsonSerializable
{
diff --git a/sdks/php/src/Model/TeamMemberResponse.php b/sdks/php/src/Model/TeamMemberResponse.php
index 89141eb9b..b41307213 100644
--- a/sdks/php/src/Model/TeamMemberResponse.php
+++ b/sdks/php/src/Model/TeamMemberResponse.php
@@ -38,7 +38,7 @@
*
* @category Class
* @see https://openapi-generator.tech
- * @implements \ArrayAccess