feat: add edgio applications v7 deployer
This commit is contained in:
18
internal/pkg/vendors/edgio-sdk/applications/v7/dtos/property.go
vendored
Normal file
18
internal/pkg/vendors/edgio-sdk/applications/v7/dtos/property.go
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
package dtos
|
||||
|
||||
import "time"
|
||||
|
||||
type Property struct {
|
||||
IdLink string `json:"@id"`
|
||||
Id string `json:"id"`
|
||||
OrganizationID string `json:"organization_id"`
|
||||
Slug string `json:"slug"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type Properties struct {
|
||||
ID string `json:"@id"`
|
||||
TotalItems int `json:"total_items"`
|
||||
Items []Property `json:"items"`
|
||||
}
|
||||
Reference in New Issue
Block a user