Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvironmentData ¶
type EnvironmentData struct { ID uuid.UUID `json:"id,omitempty" db:"id"` Name string `json:"name,omitempty" db:"name"` Owner string `json:"owner,omitempty" db:"owner"` OrganizationID uuid.UUID `json:"org_id,omitempty" db:"org_id"` Description string `json:"description,omitempty" db:"description"` CreatedAt time.Time `json:"created_at,omitempty" db:"created_at"` UpdatedAt time.Time `json:"updated_at,omitempty" db:"updated_at"` DeletedAt sql.NullTime `json:"deleted_at,omitempty" db:"deleted_at"` }
type EnvironmentPage ¶
type EnvironmentPage struct { Environments []EnvironmentData `json:"environments"` TotalCount int `json:"total_count"` Page int `json:"page"` PageSize int `json:"page_size"` }
type EnvironmentPayload ¶
Click to show internal directories.
Click to hide internal directories.