-
Notifications
You must be signed in to change notification settings - Fork 9
/
address_create.go
34 lines (24 loc) · 961 Bytes
/
address_create.go
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
// This file is automatically created by Recurly's OpenAPI generation process
// and thus any edits you make by hand will be lost. If you wish to make a
// change to this file, please create a Github issue explaining the changes you
// need and we will usher them to the appropriate places.
package recurly
import ()
type AddressCreate struct {
// Phone number
Phone *string `json:"phone,omitempty"`
// Street 1
Street1 *string `json:"street1,omitempty"`
// Street 2
Street2 *string `json:"street2,omitempty"`
// City
City *string `json:"city,omitempty"`
// State or province.
Region *string `json:"region,omitempty"`
// Zip or postal code.
PostalCode *string `json:"postal_code,omitempty"`
// Country, 2-letter ISO 3166-1 alpha-2 code.
Country *string `json:"country,omitempty"`
// Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
GeoCode *string `json:"geo_code,omitempty"`
}