github.com/twilio/twilio-go@v1.20.1/rest/numbers/v2/model_numbers_v2_dependent_hosted_number_order.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Numbers 8 * This is the public Twilio REST API. 9 * 10 * NOTE: This class is auto generated by OpenAPI Generator. 11 * https://openapi-generator.tech 12 * Do not edit the class manually. 13 */ 14 15 package openapi 16 17 import ( 18 "time" 19 ) 20 21 // NumbersV2DependentHostedNumberOrder struct for NumbersV2DependentHostedNumberOrder 22 type NumbersV2DependentHostedNumberOrder struct { 23 // A 34 character string that uniquely identifies this Authorization Document 24 Sid *string `json:"sid,omitempty"` 25 // A 34 character string that uniquely identifies the bulk hosting request associated with this HostedNumberOrder. 26 BulkHostingRequestSid *string `json:"bulk_hosting_request_sid,omitempty"` 27 // The next step you need to take to complete the hosted number order and request it successfully. 28 NextStep *string `json:"next_step,omitempty"` 29 // The unique SID identifier of the Account. 30 AccountSid *string `json:"account_sid,omitempty"` 31 // A 34 character string that uniquely identifies the IncomingPhoneNumber resource created by this HostedNumberOrder. 32 IncomingPhoneNumberSid *string `json:"incoming_phone_number_sid,omitempty"` 33 // A 34 character string that uniquely identifies the Address resource that represents the address of the owner of this phone number. 34 AddressSid *string `json:"address_sid,omitempty"` 35 // A 34 character string that uniquely identifies the LOA document associated with this HostedNumberOrder. 36 SigningDocumentSid *string `json:"signing_document_sid,omitempty"` 37 // An E164 formatted phone number hosted by this HostedNumberOrder. 38 PhoneNumber *string `json:"phone_number,omitempty"` 39 Capabilities *NumbersV2AuthorizationDocumentDependentHostedNumberOrderCapabilities `json:"capabilities,omitempty"` 40 // A human readable description of this resource, up to 128 characters. 41 FriendlyName *string `json:"friendly_name,omitempty"` 42 Status *string `json:"status,omitempty"` 43 // A message that explains why a hosted_number_order went to status \"action-required\" 44 FailureReason *string `json:"failure_reason,omitempty"` 45 // The date this resource was created, given as [GMT RFC 2822](http://www.ietf.org/rfc/rfc2822.txt) format. 46 DateCreated *time.Time `json:"date_created,omitempty"` 47 // The date that this resource was updated, given as [GMT RFC 2822](http://www.ietf.org/rfc/rfc2822.txt) format. 48 DateUpdated *time.Time `json:"date_updated,omitempty"` 49 // Email of the owner of this phone number that is being hosted. 50 Email *string `json:"email,omitempty"` 51 // Email recipients who will be informed when an Authorization Document has been sent and signed 52 CcEmails *[]string `json:"cc_emails,omitempty"` 53 // The title of the person authorized to sign the Authorization Document for this phone number. 54 ContactTitle *string `json:"contact_title,omitempty"` 55 // The contact phone number of the person authorized to sign the Authorization Document. 56 ContactPhoneNumber *string `json:"contact_phone_number,omitempty"` 57 }