Skip to content

Commit

Permalink
Generate 2019.10
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-swu committed Dec 19, 2019
1 parent 4b4c6ca commit 3aeb03c
Show file tree
Hide file tree
Showing 51 changed files with 4,073 additions and 2,546 deletions.
21 changes: 12 additions & 9 deletions docs/APIError.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
# DyspatchClient.APIError

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**code** | **String** | Error code: * server_error - Internal server error. * invalid_parameter - Validation error, parameter will contain invalid field and message will contain the reason. * invalid_body - Body could not be parsed, message will contain the reason. * invalid_request - Validation error, the protocol used to make the request was not https. * unauthorized - Credentials were found but permissions were not sufficient. * unauthenticated - Credentials were not found or were not valid. * not_found - The requested resource was not found. * rate_limited - The request was refused because a rate limit was exceeded. There is an account wide rate limit of 3600 requests per-minute, although that is subject to change. The current remaining rate limit can be viewed by checking the X-Ratelimit-Remaining header. | [optional]
**code** | **String** | Error code: * server_error - Internal server error. * invalid_parameter - Validation error, parameter will contain invalid field and message will contain the reason. * invalid_body - Body could not be parsed, message will contain the reason. * invalid_request - Validation error, the protocol used to make the request was not https. * unauthorized - Credentials were found but permissions were not sufficient. * unauthenticated - Credentials were not found or were not valid. * not_found - The requested resource was not found. * rate_limited - The request was refused because a rate limit was exceeded. There is an account wide rate limit of 3600 requests per-minute, although that is subject to change. The current remaining rate limit can be viewed by checking the X-Ratelimit-Remaining header. * prohibited_action - The request was refused because an action was not valid for the requested resource. Typically this will happen if you try to make changes to a locked resource. | [optional]
**message** | **String** | Human readable error message | [optional]
**parameter** | **String** | The invalid parameter, if 'code' is invalid_parameter | [optional]
**parameter** | **String** | The invalid parameter, if 'code' is invalid_parameter | [optional]



<a name="CodeEnum"></a>
## Enum: CodeEnum


* `serverError` (value: `"server_error"`)
* `server_error` (value: `"server_error"`)

* `invalidParameter` (value: `"invalid_parameter"`)
* `invalid_parameter` (value: `"invalid_parameter"`)

* `invalidBody` (value: `"invalid_body"`)
* `invalid_body` (value: `"invalid_body"`)

* `invalidRequest` (value: `"invalid_request"`)
* `invalid_request` (value: `"invalid_request"`)

* `unauthorized` (value: `"unauthorized"`)

* `unauthenticated` (value: `"unauthenticated"`)

* `notFound` (value: `"not_found"`)
* `not_found` (value: `"not_found"`)

* `rate_limited` (value: `"rate_limited"`)

* `rateLimited` (value: `"rate_limited"`)
* `prohibited_action` (value: `"prohibited_action"`)



Expand Down
1 change: 1 addition & 0 deletions docs/CompiledRead.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# DyspatchClient.CompiledRead

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**sender** | **String** | Sender address | [optional]
Expand Down
1 change: 1 addition & 0 deletions docs/Cursor.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# DyspatchClient.Cursor

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**next** | **String** | A cursor to fetch the next page of results | [optional]
Expand Down
1 change: 1 addition & 0 deletions docs/DraftMetaRead.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# DyspatchClient.DraftMetaRead

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | An opaque, unique identifier for a draft | [optional]
Expand Down
3 changes: 2 additions & 1 deletion docs/DraftRead.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# DyspatchClient.DraftRead

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | An opaque, unique identifier for a draft | [optional]
Expand All @@ -10,6 +11,6 @@ Name | Type | Description | Notes
**compiled** | [**CompiledRead**](CompiledRead.md) | | [optional]
**createdAt** | **Date** | The time of initial creation | [optional]
**updatedAt** | **Date** | The time of last update | [optional]
**localizations** | [**[LocalizationMetaRead]**](LocalizationMetaRead.md) | A list of the Template's available localizations | [optional]
**localizations** | [**[LocalizationMetaRead]**](LocalizationMetaRead.md) | A list of the Template&#39;s available localizations | [optional]


Loading

0 comments on commit 3aeb03c

Please sign in to comment.