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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions openapi-raw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10018,6 +10018,11 @@ components:
type: string
type: object
FaxLineResponseFaxLine:
required:
- accounts
- created_at
- number
- updated_at
properties:
number:
description: '_t__FaxLineResponseFaxLine::NUMBER'
Expand Down
5 changes: 5 additions & 0 deletions openapi-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10626,6 +10626,11 @@ components:
type: string
type: object
FaxLineResponseFaxLine:
required:
- accounts
- created_at
- number
- updated_at
properties:
number:
description: Number
Expand Down
5 changes: 5 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10604,6 +10604,11 @@ components:
type: string
type: object
FaxLineResponseFaxLine:
required:
- accounts
- created_at
- number
- updated_at
properties:
number:
description: Number
Expand Down
2 changes: 1 addition & 1 deletion sdks/dotnet/docs/FaxLineResponseFaxLine.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Number** | **string** | Number | [optional] **CreatedAt** | **int** | Created at | [optional] **UpdatedAt** | **int** | Updated at | [optional] **Accounts** | [**List<AccountResponse>**](AccountResponse.md) | | [optional]
**Number** | **string** | Number | **CreatedAt** | **int** | Created at | **UpdatedAt** | **int** | Updated at | **Accounts** | [**List<AccountResponse>**](AccountResponse.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

26 changes: 18 additions & 8 deletions sdks/dotnet/src/Dropbox.Sign/Model/FaxLineResponseFaxLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,26 @@ protected FaxLineResponseFaxLine() { }
/// <summary>
/// Initializes a new instance of the <see cref="FaxLineResponseFaxLine" /> class.
/// </summary>
/// <param name="number">Number.</param>
/// <param name="createdAt">Created at.</param>
/// <param name="updatedAt">Updated at.</param>
/// <param name="accounts">accounts.</param>
/// <param name="number">Number (required).</param>
/// <param name="createdAt">Created at (required).</param>
/// <param name="updatedAt">Updated at (required).</param>
/// <param name="accounts">accounts (required).</param>
public FaxLineResponseFaxLine(string number = default(string), int createdAt = default(int), int updatedAt = default(int), List<AccountResponse> accounts = default(List<AccountResponse>))
{

// to ensure "number" is required (not null)
if (number == null)
{
throw new ArgumentNullException("number is a required property for FaxLineResponseFaxLine and cannot be null");
}
this.Number = number;
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
// to ensure "accounts" is required (not null)
if (accounts == null)
{
throw new ArgumentNullException("accounts is a required property for FaxLineResponseFaxLine and cannot be null");
}
this.Accounts = accounts;
}

Expand All @@ -74,27 +84,27 @@ public static FaxLineResponseFaxLine Init(string jsonData)
/// Number
/// </summary>
/// <value>Number</value>
[DataMember(Name = "number", EmitDefaultValue = true)]
[DataMember(Name = "number", IsRequired = true, EmitDefaultValue = true)]
public string Number { get; set; }

/// <summary>
/// Created at
/// </summary>
/// <value>Created at</value>
[DataMember(Name = "created_at", EmitDefaultValue = true)]
[DataMember(Name = "created_at", IsRequired = true, EmitDefaultValue = true)]
public int CreatedAt { get; set; }

/// <summary>
/// Updated at
/// </summary>
/// <value>Updated at</value>
[DataMember(Name = "updated_at", EmitDefaultValue = true)]
[DataMember(Name = "updated_at", IsRequired = true, EmitDefaultValue = true)]
public int UpdatedAt { get; set; }

/// <summary>
/// Gets or Sets Accounts
/// </summary>
[DataMember(Name = "accounts", EmitDefaultValue = true)]
[DataMember(Name = "accounts", IsRequired = true, EmitDefaultValue = true)]
public List<AccountResponse> Accounts { get; set; }

/// <summary>
Expand Down
8 changes: 4 additions & 4 deletions sdks/java-v1/docs/FaxLineResponseFaxLine.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| `number` | ```String``` | Number | |
| `createdAt` | ```Integer``` | Created at | |
| `updatedAt` | ```Integer``` | Updated at | |
| `accounts` | [```List<AccountResponse>```](AccountResponse.md) | | |
| `number`<sup>*_required_</sup> | ```String``` | Number | |
| `createdAt`<sup>*_required_</sup> | ```Integer``` | Created at | |
| `updatedAt`<sup>*_required_</sup> | ```Integer``` | Updated at | |
| `accounts`<sup>*_required_</sup> | [```List<AccountResponse>```](AccountResponse.md) | | |



Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class FaxLineResponseFaxLine {
private Integer updatedAt;

public static final String JSON_PROPERTY_ACCOUNTS = "accounts";
private List<AccountResponse> accounts = null;
private List<AccountResponse> accounts = new ArrayList<>();

public FaxLineResponseFaxLine() {}

Expand Down Expand Up @@ -76,14 +76,15 @@ public FaxLineResponseFaxLine number(String number) {
*
* @return number
*/
@javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getNumber() {
return number;
}

@JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setNumber(String number) {
this.number = number;
}
Expand All @@ -98,14 +99,15 @@ public FaxLineResponseFaxLine createdAt(Integer createdAt) {
*
* @return createdAt
*/
@javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getCreatedAt() {
return createdAt;
}

@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreatedAt(Integer createdAt) {
this.createdAt = createdAt;
}
Expand All @@ -120,14 +122,15 @@ public FaxLineResponseFaxLine updatedAt(Integer updatedAt) {
*
* @return updatedAt
*/
@javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getUpdatedAt() {
return updatedAt;
}

@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUpdatedAt(Integer updatedAt) {
this.updatedAt = updatedAt;
}
Expand All @@ -150,14 +153,15 @@ public FaxLineResponseFaxLine addAccountsItem(AccountResponse accountsItem) {
*
* @return accounts
*/
@javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ACCOUNTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ACCOUNTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public List<AccountResponse> getAccounts() {
return accounts;
}

@JsonProperty(JSON_PROPERTY_ACCOUNTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAccounts(List<AccountResponse> accounts) {
this.accounts = accounts;
}
Expand Down
8 changes: 4 additions & 4 deletions sdks/java-v2/docs/FaxLineResponseFaxLine.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| `number` | ```String``` | Number | |
| `createdAt` | ```Integer``` | Created at | |
| `updatedAt` | ```Integer``` | Updated at | |
| `accounts` | [```List<AccountResponse>```](AccountResponse.md) | | |
| `number`<sup>*_required_</sup> | ```String``` | Number | |
| `createdAt`<sup>*_required_</sup> | ```Integer``` | Created at | |
| `updatedAt`<sup>*_required_</sup> | ```Integer``` | Updated at | |
| `accounts`<sup>*_required_</sup> | [```List<AccountResponse>```](AccountResponse.md) | | |



Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class FaxLineResponseFaxLine {
private Integer updatedAt;

public static final String JSON_PROPERTY_ACCOUNTS = "accounts";
private List<AccountResponse> accounts = null;
private List<AccountResponse> accounts = new ArrayList<>();

public FaxLineResponseFaxLine() {
}
Expand Down Expand Up @@ -83,17 +83,17 @@ public FaxLineResponseFaxLine number(String number) {
* Number
* @return number
*/
@jakarta.annotation.Nullable
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public String getNumber() {
return number;
}


@JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setNumber(String number) {
this.number = number;
}
Expand All @@ -108,17 +108,17 @@ public FaxLineResponseFaxLine createdAt(Integer createdAt) {
* Created at
* @return createdAt
*/
@jakarta.annotation.Nullable
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public Integer getCreatedAt() {
return createdAt;
}


@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreatedAt(Integer createdAt) {
this.createdAt = createdAt;
}
Expand All @@ -133,17 +133,17 @@ public FaxLineResponseFaxLine updatedAt(Integer updatedAt) {
* Updated at
* @return updatedAt
*/
@jakarta.annotation.Nullable
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public Integer getUpdatedAt() {
return updatedAt;
}


@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUpdatedAt(Integer updatedAt) {
this.updatedAt = updatedAt;
}
Expand All @@ -166,17 +166,17 @@ public FaxLineResponseFaxLine addAccountsItem(AccountResponse accountsItem) {
* Get accounts
* @return accounts
*/
@jakarta.annotation.Nullable
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ACCOUNTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public List<AccountResponse> getAccounts() {
return accounts;
}


@JsonProperty(JSON_PROPERTY_ACCOUNTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAccounts(List<AccountResponse> accounts) {
this.accounts = accounts;
}
Expand Down
8 changes: 4 additions & 4 deletions sdks/node/docs/model/FaxLineResponseFaxLine.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| `number` | ```string``` | Number | |
| `createdAt` | ```number``` | Created at | |
| `updatedAt` | ```number``` | Updated at | |
| `accounts` | [```Array<AccountResponse>```](AccountResponse.md) | | |
| `number`<sup>*_required_</sup> | ```string``` | Number | |
| `createdAt`<sup>*_required_</sup> | ```number``` | Created at | |
| `updatedAt`<sup>*_required_</sup> | ```number``` | Updated at | |
| `accounts`<sup>*_required_</sup> | [```Array<AccountResponse>```](AccountResponse.md) | | |

[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
8 changes: 4 additions & 4 deletions sdks/node/model/faxLineResponseFaxLine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ export class FaxLineResponseFaxLine {
/**
* Number
*/
"number"?: string;
"number": string;
/**
* Created at
*/
"createdAt"?: number;
"createdAt": number;
/**
* Updated at
*/
"updatedAt"?: number;
"accounts"?: Array<AccountResponse>;
"updatedAt": number;
"accounts": Array<AccountResponse>;

static discriminator: string | undefined = undefined;

Expand Down
8 changes: 4 additions & 4 deletions sdks/node/types/model/faxLineResponseFaxLine.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { AttributeTypeMap } from "./";
import { AccountResponse } from "./accountResponse";
export declare class FaxLineResponseFaxLine {
"number"?: string;
"createdAt"?: number;
"updatedAt"?: number;
"accounts"?: Array<AccountResponse>;
"number": string;
"createdAt": number;
"updatedAt": number;
"accounts": Array<AccountResponse>;
static discriminator: string | undefined;
static attributeTypeMap: AttributeTypeMap;
static getAttributeTypeMap(): AttributeTypeMap;
Expand Down
8 changes: 4 additions & 4 deletions sdks/php/docs/Model/FaxLineResponseFaxLine.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| `number` | ```string``` | Number | |
| `created_at` | ```int``` | Created at | |
| `updated_at` | ```int``` | Updated at | |
| `accounts` | [```\Dropbox\Sign\Model\AccountResponse[]```](AccountResponse.md) | | |
| `number`<sup>*_required_</sup> | ```string``` | Number | |
| `created_at`<sup>*_required_</sup> | ```int``` | Created at | |
| `updated_at`<sup>*_required_</sup> | ```int``` | Updated at | |
| `accounts`<sup>*_required_</sup> | [```\Dropbox\Sign\Model\AccountResponse[]```](AccountResponse.md) | | |

[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
Loading