-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmodel_serverless_v1_service.go
45 lines (42 loc) · 2.22 KB
/
model_serverless_v1_service.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
35
36
37
38
39
40
41
42
43
44
45
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Serverless
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package openapi
import (
"time"
)
// ServerlessV1Service struct for ServerlessV1Service
type ServerlessV1Service struct {
// The unique string that we created to identify the Service resource.
Sid *string `json:"sid,omitempty"`
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Service resource.
AccountSid *string `json:"account_sid,omitempty"`
// The string that you assigned to describe the Service resource.
FriendlyName *string `json:"friendly_name,omitempty"`
// A user-defined string that uniquely identifies the Service resource. It can be used in place of the Service resource's `sid` in the URL to address the Service resource.
UniqueName *string `json:"unique_name,omitempty"`
// Whether to inject Account credentials into a function invocation context.
IncludeCredentials *bool `json:"include_credentials,omitempty"`
// Whether the Service resource's properties and subresources can be edited via the UI.
UiEditable *bool `json:"ui_editable,omitempty"`
// The base domain name for this Service, which is a combination of the unique name and a randomly generated string.
DomainBase *string `json:"domain_base,omitempty"`
// The date and time in GMT when the Service resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
DateCreated *time.Time `json:"date_created,omitempty"`
// The date and time in GMT when the Service resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
DateUpdated *time.Time `json:"date_updated,omitempty"`
// The absolute URL of the Service resource.
Url *string `json:"url,omitempty"`
// The URLs of the Service's nested resources.
Links *map[string]interface{} `json:"links,omitempty"`
}