github.com/twilio/twilio-go@v1.20.1/rest/verify/v2/model_verify_v2_verification_template.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Verify 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 // VerifyV2VerificationTemplate struct for VerifyV2VerificationTemplate 18 type VerifyV2VerificationTemplate struct { 19 // A 34 character string that uniquely identifies a Verification Template. 20 Sid *string `json:"sid,omitempty"` 21 // The unique SID identifier of the Account. 22 AccountSid *string `json:"account_sid,omitempty"` 23 // A descriptive string that you create to describe a Template. It can be up to 32 characters long. 24 FriendlyName *string `json:"friendly_name,omitempty"` 25 // A list of channels that support the Template. Can include: sms, voice. 26 Channels *[]string `json:"channels,omitempty"` 27 // An object that contains the different translations of the template. Every translation is identified by the language short name and contains its respective information as the approval status, text and created/modified date. 28 Translations *interface{} `json:"translations,omitempty"` 29 }