-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmodel_fields_fields.go
More file actions
47 lines (45 loc) · 1.73 KB
/
model_fields_fields.go
File metadata and controls
47 lines (45 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* ClickSend v3 API
*
* This is an official SDK for [ClickSend](https://clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](https://dashboard.clicksend.com/#/signup/step1/)..*
*
* API version: 3.1
* Contact: support@clicksend.com
* Generated by: Swagger Codegen (https://github.com/clicksend-api/clicksend-codegen.git)
*/
package clicksend
// From Email object.
type FieldsFields struct {
// Your phone number in E.164 format. Must be provided if no fax number or email.
PhoneNumber string `json:"phone_number,omitempty"`
//
Custom1 string `json:"custom_1,omitempty"`
// Your email. Must be provided if no phone number or fax number.
Email string `json:"email,omitempty"`
// Your fax number. Must be provided if no phone number or email.
FaxNumber string `json:"fax_number,omitempty"`
// Your first name.
FirstName string `json:"first_name,omitempty"`
// Your street address
AddressLine1 string `json:"address_line_1,omitempty"`
//
AddressLine2 string `json:"address_line_2,omitempty"`
// Your nearest city
AddressCity string `json:"address_city,omitempty"`
// Your current state
AddressState string `json:"address_state,omitempty"`
// Your current postcode
AddressPostalCode string `json:"address_postal_code,omitempty"`
// Your current country
AddressCountry string `json:"address_country,omitempty"`
// Your organisation name
OrganizationName string `json:"organization_name,omitempty"`
//
Custom2 string `json:"custom_2,omitempty"`
//
Custom3 string `json:"custom_3,omitempty"`
//
Custom4 string `json:"custom_4,omitempty"`
// Your last name
LastName string `json:"last_name,omitempty"`
}