-
Notifications
You must be signed in to change notification settings - Fork 1
/
model_drafts_read.go
17 lines (16 loc) · 1.16 KB
/
model_drafts_read.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
* Dyspatch API
*
* # Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
*
* API version: 2020.11
* Contact: [email protected]
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package dyspatch
// DraftsRead list of draft metadata
type DraftsRead struct {
Cursor Cursor `json:"cursor,omitempty"`
// A list of draft metadata objects
Data []DraftMetaRead `json:"data,omitempty"`
}