github.com/twilio/twilio-go@v1.20.1/rest/messaging/v1/model_messaging_v1_domain_cert_v4.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Messaging 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 // MessagingV1DomainCertV4 struct for MessagingV1DomainCertV4 22 type MessagingV1DomainCertV4 struct { 23 // The unique string that we created to identify the Domain resource. 24 DomainSid *string `json:"domain_sid,omitempty"` 25 // Date that this Domain was last updated. 26 DateUpdated *time.Time `json:"date_updated,omitempty"` 27 // Date that the private certificate associated with this domain expires. You will need to update the certificate before that date to ensure your shortened links will continue to work. 28 DateExpires *time.Time `json:"date_expires,omitempty"` 29 // Date that this Domain was registered to the Twilio platform to create a new Domain object. 30 DateCreated *time.Time `json:"date_created,omitempty"` 31 // Full url path for this domain. 32 DomainName *string `json:"domain_name,omitempty"` 33 // The unique string that we created to identify this Certificate resource. 34 CertificateSid *string `json:"certificate_sid,omitempty"` 35 Url *string `json:"url,omitempty"` 36 // Optional JSON field describing the status and upload date of a new certificate in the process of validation 37 CertInValidation *interface{} `json:"cert_in_validation,omitempty"` 38 }