-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontract.go
49 lines (35 loc) · 1.67 KB
/
contract.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
46
47
48
49
/*
* Telstra Programmable Network API
*
* Telstra Programmable Network is a self-provisioning platform that allows its users to create on-demand connectivity services between multiple end-points and add various network functions to those services. Programmable Network enables to connectivity to a global ecosystem of networking services as well as public and private cloud services. Once you are connected to the platform on one or more POPs (points of presence), you can start creating those services based on the use case that you want to accomplish. The Programmable Network API is available to all customers who have registered to use the Programmable Network. To register, please contact your account representative.
*
* API version: 2.1.3
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package TelstraTPN
type Contract struct {
// Identifier of a contract
Contractid string `json:"contractid,omitempty"`
// Duration of contract in minutes
Duration int32 `json:"duration,omitempty"`
// Bandwidth in kB/s
Bandwidth int32 `json:"bandwidth,omitempty"`
//
Price int32 `json:"price,omitempty"`
//
ContractStatus int32 `json:"contractStatus,omitempty"`
//
Version int32 `json:"version,omitempty"`
//
Deletedtimestamp int32 `json:"deletedtimestamp,omitempty"`
//
CurrencyCode string `json:"currencyCode,omitempty"`
//
CurrencyID string `json:"currencyID,omitempty"`
// Renewal Option: 0=Auto Disconnect, 1=Auto Renew, 2=Pay per hour
RenewalOption int32 `json:"renewal-option,omitempty"`
//
ContractStartTime int64 `json:"contract-start-time,omitempty"`
//
ContractEndTime int64 `json:"contract-end-time,omitempty"`
}