38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
/*
|
|
* HyperOne API
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 0.0.2
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package openapi
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Organisation struct {
|
|
Id string `json:"_id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Services string `json:"services,omitempty"`
|
|
Flavour string `json:"flavour,omitempty"`
|
|
ModifiedOn time.Time `json:"modifiedOn,omitempty"`
|
|
ModifiedBy string `json:"modifiedBy,omitempty"`
|
|
CreatedBy string `json:"createdBy,omitempty"`
|
|
CreatedOn time.Time `json:"createdOn,omitempty"`
|
|
AccessRights []ProjectAccessRights `json:"accessRights,omitempty"`
|
|
Processing bool `json:"processing,omitempty"`
|
|
Created bool `json:"created,omitempty"`
|
|
Queue []Event `json:"queue,omitempty"`
|
|
State string `json:"state,omitempty"`
|
|
Tag map[string]interface{} `json:"tag,omitempty"`
|
|
Project string `json:"project,omitempty"`
|
|
Billing OrganisationBilling `json:"billing,omitempty"`
|
|
Verified float32 `json:"verified,omitempty"`
|
|
Limit OrganisationLimit `json:"limit,omitempty"`
|
|
Roles []ProjectRoles `json:"roles,omitempty"`
|
|
Transfer OrganisationTransfer `json:"transfer,omitempty"`
|
|
BankAccount string `json:"bankAccount,omitempty"`
|
|
}
|