github.com/twilio/twilio-go@v1.20.1/rest/microvisor/v1/model_microvisor_v1_app.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Microvisor 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 // MicrovisorV1App struct for MicrovisorV1App 22 type MicrovisorV1App struct { 23 // A 34-character string that uniquely identifies this App. 24 Sid *string `json:"sid,omitempty"` 25 // The unique SID identifier of the Account. 26 AccountSid *string `json:"account_sid,omitempty"` 27 // App manifest hash represented as `hash_algorithm:hash_value`. 28 Hash *string `json:"hash,omitempty"` 29 // A developer-defined string that uniquely identifies the App. This value must be unique for all Apps on this Account. The `unique_name` value may be used as an alternative to the `sid` in the URL path to address the resource. 30 UniqueName *string `json:"unique_name,omitempty"` 31 // The date that this App was created, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. 32 DateCreated *time.Time `json:"date_created,omitempty"` 33 // The date that this App was last updated, given in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. 34 DateUpdated *time.Time `json:"date_updated,omitempty"` 35 // The URL of this resource. 36 Url *string `json:"url,omitempty"` 37 Links *map[string]interface{} `json:"links,omitempty"` 38 }