-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_v1_link_resource.go
40 lines (39 loc) · 1.02 KB
/
model_v1_link_resource.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
/*
* LinksGPT URL Shortener SDK
*
* LinksGPT URL Shortener SDK
*
* API version: 1.0.0
* Contact: [email protected]
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
type V1LinkResource struct {
// link id
Id string `json:"id,omitempty"`
// workspace id
WorkspaceId string `json:"workspaceId,omitempty"`
// domain id
DomainId string `json:"domainId,omitempty"`
// domain name
DomainName string `json:"domainName,omitempty"`
// title
Title string `json:"title,omitempty"`
// path
Path string `json:"path,omitempty"`
// short link
Link string `json:"link,omitempty"`
// file
File string `json:"file,omitempty"`
// record type
RecordType string `json:"recordType,omitempty"`
// destination url
Destination string `json:"destination,omitempty"`
Utm *V1LinkResourceUtm `json:"utm,omitempty"`
// tags
Tags []string `json:"tags,omitempty"`
// created at
CreatedAt string `json:"createdAt,omitempty"`
// updated at
UpdatedAt string `json:"updatedAt,omitempty"`
}