-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmodel_serverless_v1_function_version_content.go
30 lines (28 loc) · 1.3 KB
/
model_serverless_v1_function_version_content.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
/*
* 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
// ServerlessV1FunctionVersionContent struct for ServerlessV1FunctionVersionContent
type ServerlessV1FunctionVersionContent struct {
// The unique string that we created to identify the Function Version resource.
Sid *string `json:"sid,omitempty"`
// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Function Version resource.
AccountSid *string `json:"account_sid,omitempty"`
// The SID of the Service that the Function Version resource is associated with.
ServiceSid *string `json:"service_sid,omitempty"`
// The SID of the Function that is the parent of the Function Version.
FunctionSid *string `json:"function_sid,omitempty"`
// The content of the Function Version resource.
Content *string `json:"content,omitempty"`
Url *string `json:"url,omitempty"`
}