generated

package
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 18, 2026 License: MIT Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedCustomDomainCertificateStatusEnumValues = []CustomDomainCertificateStatus{
	"PENDING",
	"ACTIVE",
	"FAILING",
}

All allowed values of CustomDomainCertificateStatus enum

View Source
var AllowedCustomDomainStatusEnumValues = []CustomDomainStatus{
	"PENDING",
	"CONNECTED",
	"FAILED",
}

All allowed values of CustomDomainStatus enum

View Source
var AllowedImageDownloadStatusEnumValues = []ImageDownloadStatus{
	"PENDING",
	"PROCESSING",
	"READY",
	"FAILED",
}

All allowed values of ImageDownloadStatus enum

View Source
var AllowedImageStatusEnumValues = []ImageStatus{
	"PENDING",
	"PROCESSING",
	"READY",
	"QUARANTINE",
}

All allowed values of ImageStatus enum

View Source
var AllowedMetricsDatasetIntervalEnumValues = []MetricsDatasetInterval{
	"HOURLY",
	"DAILY",
	"WEEKLY",
	"MONTHLY",
}

All allowed values of MetricsDatasetInterval enum

View Source
var AllowedSupportedMimeTypeEnumValues = []SupportedMimeType{
	"image/jpeg",
	"image/jxl",
	"image/png",
	"image/webp",
	"image/avif",
	"image/gif",
	"image/vnd.microsoft.icon",
	"image/heic",
	"image/bmp",
	"image/tiff",
}

All allowed values of SupportedMimeType enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	CorsOriginsAPI CorsOriginsAPI

	CustomDomainAPI CustomDomainAPI

	ImagesAPI ImagesAPI

	MetricsAPI MetricsAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the imgwire.dev Backend API development API v0.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiCorsOriginsCreateRequest

type ApiCorsOriginsCreateRequest struct {
	ApiService CorsOriginsAPI
	// contains filtered or unexported fields
}

func (ApiCorsOriginsCreateRequest) CorsOriginCreateSchema

func (r ApiCorsOriginsCreateRequest) CorsOriginCreateSchema(corsOriginCreateSchema CorsOriginCreateSchema) ApiCorsOriginsCreateRequest

func (ApiCorsOriginsCreateRequest) Execute

type ApiCorsOriginsDeleteRequest

type ApiCorsOriginsDeleteRequest struct {
	ApiService CorsOriginsAPI
	// contains filtered or unexported fields
}

func (ApiCorsOriginsDeleteRequest) Execute

type ApiCorsOriginsListRequest

type ApiCorsOriginsListRequest struct {
	ApiService CorsOriginsAPI
	// contains filtered or unexported fields
}

func (ApiCorsOriginsListRequest) Execute

func (ApiCorsOriginsListRequest) Limit

func (ApiCorsOriginsListRequest) Page

type ApiCorsOriginsRetrieveRequest

type ApiCorsOriginsRetrieveRequest struct {
	ApiService CorsOriginsAPI
	// contains filtered or unexported fields
}

func (ApiCorsOriginsRetrieveRequest) Execute

type ApiCorsOriginsUpdateRequest

type ApiCorsOriginsUpdateRequest struct {
	ApiService CorsOriginsAPI
	// contains filtered or unexported fields
}

func (ApiCorsOriginsUpdateRequest) CorsOriginUpdateSchema

func (r ApiCorsOriginsUpdateRequest) CorsOriginUpdateSchema(corsOriginUpdateSchema CorsOriginUpdateSchema) ApiCorsOriginsUpdateRequest

func (ApiCorsOriginsUpdateRequest) Execute

type ApiCustomDomainCreateRequest

type ApiCustomDomainCreateRequest struct {
	ApiService CustomDomainAPI
	// contains filtered or unexported fields
}

func (ApiCustomDomainCreateRequest) CustomDomainCreateSchema

func (r ApiCustomDomainCreateRequest) CustomDomainCreateSchema(customDomainCreateSchema CustomDomainCreateSchema) ApiCustomDomainCreateRequest

func (ApiCustomDomainCreateRequest) Execute

type ApiCustomDomainDeleteRequest

type ApiCustomDomainDeleteRequest struct {
	ApiService CustomDomainAPI
	// contains filtered or unexported fields
}

func (ApiCustomDomainDeleteRequest) Execute

type ApiCustomDomainRetrieveRequest

type ApiCustomDomainRetrieveRequest struct {
	ApiService CustomDomainAPI
	// contains filtered or unexported fields
}

func (ApiCustomDomainRetrieveRequest) Execute

type ApiCustomDomainTestConnectionRequest

type ApiCustomDomainTestConnectionRequest struct {
	ApiService CustomDomainAPI
	// contains filtered or unexported fields
}

func (ApiCustomDomainTestConnectionRequest) Execute

type ApiImagesBulkDeleteRequest

type ApiImagesBulkDeleteRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesBulkDeleteRequest) BulkDeleteImagesSchema

func (r ApiImagesBulkDeleteRequest) BulkDeleteImagesSchema(bulkDeleteImagesSchema BulkDeleteImagesSchema) ApiImagesBulkDeleteRequest

func (ApiImagesBulkDeleteRequest) Execute

type ApiImagesCreateBulkDownloadJobRequest

type ApiImagesCreateBulkDownloadJobRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesCreateBulkDownloadJobRequest) Execute

func (ApiImagesCreateBulkDownloadJobRequest) ImageDownloadJobCreateSchema

func (r ApiImagesCreateBulkDownloadJobRequest) ImageDownloadJobCreateSchema(imageDownloadJobCreateSchema ImageDownloadJobCreateSchema) ApiImagesCreateBulkDownloadJobRequest

type ApiImagesCreateRequest

type ApiImagesCreateRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesCreateRequest) Execute

func (ApiImagesCreateRequest) StandardUploadCreateSchema

func (r ApiImagesCreateRequest) StandardUploadCreateSchema(standardUploadCreateSchema StandardUploadCreateSchema) ApiImagesCreateRequest

func (ApiImagesCreateRequest) UploadToken

func (r ApiImagesCreateRequest) UploadToken(uploadToken string) ApiImagesCreateRequest

type ApiImagesCreateUploadTokenRequest

type ApiImagesCreateUploadTokenRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesCreateUploadTokenRequest) Execute

type ApiImagesDeleteRequest

type ApiImagesDeleteRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesDeleteRequest) Execute

func (r ApiImagesDeleteRequest) Execute() (map[string]string, *http.Response, error)

type ApiImagesListRequest

type ApiImagesListRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesListRequest) Execute

func (r ApiImagesListRequest) Execute() ([]ImageSchema, *http.Response, error)

func (ApiImagesListRequest) Limit

func (ApiImagesListRequest) Page

type ApiImagesRetrieveBulkDownloadJobRequest

type ApiImagesRetrieveBulkDownloadJobRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesRetrieveBulkDownloadJobRequest) Execute

type ApiImagesRetrieveRequest

type ApiImagesRetrieveRequest struct {
	ApiService ImagesAPI
	// contains filtered or unexported fields
}

func (ApiImagesRetrieveRequest) Execute

type ApiMetricsGetDatasetsRequest

type ApiMetricsGetDatasetsRequest struct {
	ApiService MetricsAPI
	// contains filtered or unexported fields
}

func (ApiMetricsGetDatasetsRequest) DateEnd

func (ApiMetricsGetDatasetsRequest) DateStart

func (ApiMetricsGetDatasetsRequest) Execute

func (ApiMetricsGetDatasetsRequest) Interval

func (ApiMetricsGetDatasetsRequest) Tz

type ApiMetricsGetStatsRequest

type ApiMetricsGetStatsRequest struct {
	ApiService MetricsAPI
	// contains filtered or unexported fields
}

func (ApiMetricsGetStatsRequest) DateEnd

func (ApiMetricsGetStatsRequest) DateStart

func (ApiMetricsGetStatsRequest) Execute

func (ApiMetricsGetStatsRequest) Interval

func (ApiMetricsGetStatsRequest) Tz

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BulkDeleteImagesSchema

type BulkDeleteImagesSchema struct {
	ImageIds             []string `json:"image_ids"`
	AdditionalProperties map[string]interface{}
}

BulkDeleteImagesSchema struct for BulkDeleteImagesSchema

func NewBulkDeleteImagesSchema

func NewBulkDeleteImagesSchema(imageIds []string) *BulkDeleteImagesSchema

NewBulkDeleteImagesSchema instantiates a new BulkDeleteImagesSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBulkDeleteImagesSchemaWithDefaults

func NewBulkDeleteImagesSchemaWithDefaults() *BulkDeleteImagesSchema

NewBulkDeleteImagesSchemaWithDefaults instantiates a new BulkDeleteImagesSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BulkDeleteImagesSchema) GetImageIds

func (o *BulkDeleteImagesSchema) GetImageIds() []string

GetImageIds returns the ImageIds field value

func (*BulkDeleteImagesSchema) GetImageIdsOk

func (o *BulkDeleteImagesSchema) GetImageIdsOk() ([]string, bool)

GetImageIdsOk returns a tuple with the ImageIds field value and a boolean to check if the value has been set.

func (BulkDeleteImagesSchema) MarshalJSON

func (o BulkDeleteImagesSchema) MarshalJSON() ([]byte, error)

func (*BulkDeleteImagesSchema) SetImageIds

func (o *BulkDeleteImagesSchema) SetImageIds(v []string)

SetImageIds sets field value

func (BulkDeleteImagesSchema) ToMap

func (o BulkDeleteImagesSchema) ToMap() (map[string]interface{}, error)

func (*BulkDeleteImagesSchema) UnmarshalJSON

func (o *BulkDeleteImagesSchema) UnmarshalJSON(data []byte) (err error)

type CacheHitRatioDatasetPointSchema

type CacheHitRatioDatasetPointSchema struct {
	Label                string `json:"label"`
	Value                int32  `json:"value"`
	AdditionalProperties map[string]interface{}
}

CacheHitRatioDatasetPointSchema struct for CacheHitRatioDatasetPointSchema

func NewCacheHitRatioDatasetPointSchema

func NewCacheHitRatioDatasetPointSchema(label string, value int32) *CacheHitRatioDatasetPointSchema

NewCacheHitRatioDatasetPointSchema instantiates a new CacheHitRatioDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCacheHitRatioDatasetPointSchemaWithDefaults

func NewCacheHitRatioDatasetPointSchemaWithDefaults() *CacheHitRatioDatasetPointSchema

NewCacheHitRatioDatasetPointSchemaWithDefaults instantiates a new CacheHitRatioDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CacheHitRatioDatasetPointSchema) GetLabel

GetLabel returns the Label field value

func (*CacheHitRatioDatasetPointSchema) GetLabelOk

func (o *CacheHitRatioDatasetPointSchema) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*CacheHitRatioDatasetPointSchema) GetValue

func (o *CacheHitRatioDatasetPointSchema) GetValue() int32

GetValue returns the Value field value

func (*CacheHitRatioDatasetPointSchema) GetValueOk

func (o *CacheHitRatioDatasetPointSchema) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (CacheHitRatioDatasetPointSchema) MarshalJSON

func (o CacheHitRatioDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*CacheHitRatioDatasetPointSchema) SetLabel

func (o *CacheHitRatioDatasetPointSchema) SetLabel(v string)

SetLabel sets field value

func (*CacheHitRatioDatasetPointSchema) SetValue

func (o *CacheHitRatioDatasetPointSchema) SetValue(v int32)

SetValue sets field value

func (CacheHitRatioDatasetPointSchema) ToMap

func (o CacheHitRatioDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*CacheHitRatioDatasetPointSchema) UnmarshalJSON

func (o *CacheHitRatioDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CorsOriginCreateSchema

type CorsOriginCreateSchema struct {
	Pattern              string `json:"pattern"`
	AdditionalProperties map[string]interface{}
}

CorsOriginCreateSchema struct for CorsOriginCreateSchema

func NewCorsOriginCreateSchema

func NewCorsOriginCreateSchema(pattern string) *CorsOriginCreateSchema

NewCorsOriginCreateSchema instantiates a new CorsOriginCreateSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCorsOriginCreateSchemaWithDefaults

func NewCorsOriginCreateSchemaWithDefaults() *CorsOriginCreateSchema

NewCorsOriginCreateSchemaWithDefaults instantiates a new CorsOriginCreateSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CorsOriginCreateSchema) GetPattern

func (o *CorsOriginCreateSchema) GetPattern() string

GetPattern returns the Pattern field value

func (*CorsOriginCreateSchema) GetPatternOk

func (o *CorsOriginCreateSchema) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value and a boolean to check if the value has been set.

func (CorsOriginCreateSchema) MarshalJSON

func (o CorsOriginCreateSchema) MarshalJSON() ([]byte, error)

func (*CorsOriginCreateSchema) SetPattern

func (o *CorsOriginCreateSchema) SetPattern(v string)

SetPattern sets field value

func (CorsOriginCreateSchema) ToMap

func (o CorsOriginCreateSchema) ToMap() (map[string]interface{}, error)

func (*CorsOriginCreateSchema) UnmarshalJSON

func (o *CorsOriginCreateSchema) UnmarshalJSON(data []byte) (err error)

type CorsOriginSchema

type CorsOriginSchema struct {
	CreatedAt            time.Time `json:"created_at"`
	EnvironmentId        string    `json:"environment_id"`
	Id                   string    `json:"id"`
	Pattern              string    `json:"pattern"`
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

CorsOriginSchema struct for CorsOriginSchema

func NewCorsOriginSchema

func NewCorsOriginSchema(createdAt time.Time, environmentId string, id string, pattern string, updatedAt time.Time) *CorsOriginSchema

NewCorsOriginSchema instantiates a new CorsOriginSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCorsOriginSchemaWithDefaults

func NewCorsOriginSchemaWithDefaults() *CorsOriginSchema

NewCorsOriginSchemaWithDefaults instantiates a new CorsOriginSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CorsOriginSchema) GetCreatedAt

func (o *CorsOriginSchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*CorsOriginSchema) GetCreatedAtOk

func (o *CorsOriginSchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*CorsOriginSchema) GetEnvironmentId

func (o *CorsOriginSchema) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value

func (*CorsOriginSchema) GetEnvironmentIdOk

func (o *CorsOriginSchema) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value and a boolean to check if the value has been set.

func (*CorsOriginSchema) GetId

func (o *CorsOriginSchema) GetId() string

GetId returns the Id field value

func (*CorsOriginSchema) GetIdOk

func (o *CorsOriginSchema) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CorsOriginSchema) GetPattern

func (o *CorsOriginSchema) GetPattern() string

GetPattern returns the Pattern field value

func (*CorsOriginSchema) GetPatternOk

func (o *CorsOriginSchema) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value and a boolean to check if the value has been set.

func (*CorsOriginSchema) GetUpdatedAt

func (o *CorsOriginSchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*CorsOriginSchema) GetUpdatedAtOk

func (o *CorsOriginSchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (CorsOriginSchema) MarshalJSON

func (o CorsOriginSchema) MarshalJSON() ([]byte, error)

func (*CorsOriginSchema) SetCreatedAt

func (o *CorsOriginSchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*CorsOriginSchema) SetEnvironmentId

func (o *CorsOriginSchema) SetEnvironmentId(v string)

SetEnvironmentId sets field value

func (*CorsOriginSchema) SetId

func (o *CorsOriginSchema) SetId(v string)

SetId sets field value

func (*CorsOriginSchema) SetPattern

func (o *CorsOriginSchema) SetPattern(v string)

SetPattern sets field value

func (*CorsOriginSchema) SetUpdatedAt

func (o *CorsOriginSchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (CorsOriginSchema) ToMap

func (o CorsOriginSchema) ToMap() (map[string]interface{}, error)

func (*CorsOriginSchema) UnmarshalJSON

func (o *CorsOriginSchema) UnmarshalJSON(data []byte) (err error)

type CorsOriginUpdateSchema

type CorsOriginUpdateSchema struct {
	Pattern              string `json:"pattern"`
	AdditionalProperties map[string]interface{}
}

CorsOriginUpdateSchema struct for CorsOriginUpdateSchema

func NewCorsOriginUpdateSchema

func NewCorsOriginUpdateSchema(pattern string) *CorsOriginUpdateSchema

NewCorsOriginUpdateSchema instantiates a new CorsOriginUpdateSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCorsOriginUpdateSchemaWithDefaults

func NewCorsOriginUpdateSchemaWithDefaults() *CorsOriginUpdateSchema

NewCorsOriginUpdateSchemaWithDefaults instantiates a new CorsOriginUpdateSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CorsOriginUpdateSchema) GetPattern

func (o *CorsOriginUpdateSchema) GetPattern() string

GetPattern returns the Pattern field value

func (*CorsOriginUpdateSchema) GetPatternOk

func (o *CorsOriginUpdateSchema) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value and a boolean to check if the value has been set.

func (CorsOriginUpdateSchema) MarshalJSON

func (o CorsOriginUpdateSchema) MarshalJSON() ([]byte, error)

func (*CorsOriginUpdateSchema) SetPattern

func (o *CorsOriginUpdateSchema) SetPattern(v string)

SetPattern sets field value

func (CorsOriginUpdateSchema) ToMap

func (o CorsOriginUpdateSchema) ToMap() (map[string]interface{}, error)

func (*CorsOriginUpdateSchema) UnmarshalJSON

func (o *CorsOriginUpdateSchema) UnmarshalJSON(data []byte) (err error)

type CorsOriginsAPI

type CorsOriginsAPI interface {

	/*
		CorsOriginsCreate Create CORS Origin

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCorsOriginsCreateRequest
	*/
	CorsOriginsCreate(ctx context.Context) ApiCorsOriginsCreateRequest

	// CorsOriginsCreateExecute executes the request
	//  @return CorsOriginSchema
	CorsOriginsCreateExecute(r ApiCorsOriginsCreateRequest) (*CorsOriginSchema, *http.Response, error)

	/*
		CorsOriginsDelete Delete CORS Origin By ID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param corsOriginId
		@return ApiCorsOriginsDeleteRequest
	*/
	CorsOriginsDelete(ctx context.Context, corsOriginId string) ApiCorsOriginsDeleteRequest

	// CorsOriginsDeleteExecute executes the request
	//  @return map[string]string
	CorsOriginsDeleteExecute(r ApiCorsOriginsDeleteRequest) (map[string]string, *http.Response, error)

	/*
		CorsOriginsList List CORS Origins

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCorsOriginsListRequest
	*/
	CorsOriginsList(ctx context.Context) ApiCorsOriginsListRequest

	// CorsOriginsListExecute executes the request
	//  @return []CorsOriginSchema
	CorsOriginsListExecute(r ApiCorsOriginsListRequest) ([]CorsOriginSchema, *http.Response, error)

	/*
		CorsOriginsRetrieve Get CORS Origin By ID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param corsOriginId
		@return ApiCorsOriginsRetrieveRequest
	*/
	CorsOriginsRetrieve(ctx context.Context, corsOriginId string) ApiCorsOriginsRetrieveRequest

	// CorsOriginsRetrieveExecute executes the request
	//  @return CorsOriginSchema
	CorsOriginsRetrieveExecute(r ApiCorsOriginsRetrieveRequest) (*CorsOriginSchema, *http.Response, error)

	/*
		CorsOriginsUpdate Update CORS Origin By ID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param corsOriginId
		@return ApiCorsOriginsUpdateRequest
	*/
	CorsOriginsUpdate(ctx context.Context, corsOriginId string) ApiCorsOriginsUpdateRequest

	// CorsOriginsUpdateExecute executes the request
	//  @return CorsOriginSchema
	CorsOriginsUpdateExecute(r ApiCorsOriginsUpdateRequest) (*CorsOriginSchema, *http.Response, error)
}

type CorsOriginsAPIService

type CorsOriginsAPIService service

CorsOriginsAPIService CorsOriginsAPI service

func (*CorsOriginsAPIService) CorsOriginsCreate

CorsOriginsCreate Create CORS Origin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCorsOriginsCreateRequest

func (*CorsOriginsAPIService) CorsOriginsCreateExecute

Execute executes the request

@return CorsOriginSchema

func (*CorsOriginsAPIService) CorsOriginsDelete

func (a *CorsOriginsAPIService) CorsOriginsDelete(ctx context.Context, corsOriginId string) ApiCorsOriginsDeleteRequest

CorsOriginsDelete Delete CORS Origin By ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param corsOriginId
@return ApiCorsOriginsDeleteRequest

func (*CorsOriginsAPIService) CorsOriginsDeleteExecute

func (a *CorsOriginsAPIService) CorsOriginsDeleteExecute(r ApiCorsOriginsDeleteRequest) (map[string]string, *http.Response, error)

Execute executes the request

@return map[string]string

func (*CorsOriginsAPIService) CorsOriginsList

CorsOriginsList List CORS Origins

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCorsOriginsListRequest

func (*CorsOriginsAPIService) CorsOriginsListExecute

Execute executes the request

@return []CorsOriginSchema

func (*CorsOriginsAPIService) CorsOriginsRetrieve

func (a *CorsOriginsAPIService) CorsOriginsRetrieve(ctx context.Context, corsOriginId string) ApiCorsOriginsRetrieveRequest

CorsOriginsRetrieve Get CORS Origin By ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param corsOriginId
@return ApiCorsOriginsRetrieveRequest

func (*CorsOriginsAPIService) CorsOriginsRetrieveExecute

Execute executes the request

@return CorsOriginSchema

func (*CorsOriginsAPIService) CorsOriginsUpdate

func (a *CorsOriginsAPIService) CorsOriginsUpdate(ctx context.Context, corsOriginId string) ApiCorsOriginsUpdateRequest

CorsOriginsUpdate Update CORS Origin By ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param corsOriginId
@return ApiCorsOriginsUpdateRequest

func (*CorsOriginsAPIService) CorsOriginsUpdateExecute

Execute executes the request

@return CorsOriginSchema

type CustomDomainAPI

type CustomDomainAPI interface {

	/*
		CustomDomainCreate Create Custom Domain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCustomDomainCreateRequest
	*/
	CustomDomainCreate(ctx context.Context) ApiCustomDomainCreateRequest

	// CustomDomainCreateExecute executes the request
	//  @return CustomDomainSchema
	CustomDomainCreateExecute(r ApiCustomDomainCreateRequest) (*CustomDomainSchema, *http.Response, error)

	/*
		CustomDomainDelete Delete Custom Domain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCustomDomainDeleteRequest
	*/
	CustomDomainDelete(ctx context.Context) ApiCustomDomainDeleteRequest

	// CustomDomainDeleteExecute executes the request
	//  @return map[string]string
	CustomDomainDeleteExecute(r ApiCustomDomainDeleteRequest) (map[string]string, *http.Response, error)

	/*
		CustomDomainRetrieve Get Custom Domain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCustomDomainRetrieveRequest
	*/
	CustomDomainRetrieve(ctx context.Context) ApiCustomDomainRetrieveRequest

	// CustomDomainRetrieveExecute executes the request
	//  @return CustomDomainSchema
	CustomDomainRetrieveExecute(r ApiCustomDomainRetrieveRequest) (*CustomDomainSchema, *http.Response, error)

	/*
		CustomDomainTestConnection Test Custom Domain Connection

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCustomDomainTestConnectionRequest
	*/
	CustomDomainTestConnection(ctx context.Context) ApiCustomDomainTestConnectionRequest

	// CustomDomainTestConnectionExecute executes the request
	//  @return CustomDomainSchema
	CustomDomainTestConnectionExecute(r ApiCustomDomainTestConnectionRequest) (*CustomDomainSchema, *http.Response, error)
}

type CustomDomainAPIService

type CustomDomainAPIService service

CustomDomainAPIService CustomDomainAPI service

func (*CustomDomainAPIService) CustomDomainCreate

CustomDomainCreate Create Custom Domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomDomainCreateRequest

func (*CustomDomainAPIService) CustomDomainCreateExecute

Execute executes the request

@return CustomDomainSchema

func (*CustomDomainAPIService) CustomDomainDelete

CustomDomainDelete Delete Custom Domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomDomainDeleteRequest

func (*CustomDomainAPIService) CustomDomainDeleteExecute

func (a *CustomDomainAPIService) CustomDomainDeleteExecute(r ApiCustomDomainDeleteRequest) (map[string]string, *http.Response, error)

Execute executes the request

@return map[string]string

func (*CustomDomainAPIService) CustomDomainRetrieve

CustomDomainRetrieve Get Custom Domain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomDomainRetrieveRequest

func (*CustomDomainAPIService) CustomDomainRetrieveExecute

Execute executes the request

@return CustomDomainSchema

func (*CustomDomainAPIService) CustomDomainTestConnection

CustomDomainTestConnection Test Custom Domain Connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomDomainTestConnectionRequest

func (*CustomDomainAPIService) CustomDomainTestConnectionExecute

Execute executes the request

@return CustomDomainSchema

type CustomDomainCertificateStatus

type CustomDomainCertificateStatus string

CustomDomainCertificateStatus Represents SSL certificate status for custom domains.

const (
	CUSTOMDOMAINCERTIFICATESTATUS_PENDING CustomDomainCertificateStatus = "PENDING"
	CUSTOMDOMAINCERTIFICATESTATUS_ACTIVE  CustomDomainCertificateStatus = "ACTIVE"
	CUSTOMDOMAINCERTIFICATESTATUS_FAILING CustomDomainCertificateStatus = "FAILING"
)

List of CustomDomainCertificateStatus

func NewCustomDomainCertificateStatusFromValue

func NewCustomDomainCertificateStatusFromValue(v string) (*CustomDomainCertificateStatus, error)

NewCustomDomainCertificateStatusFromValue returns a pointer to a valid CustomDomainCertificateStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CustomDomainCertificateStatus) IsValid

func (v CustomDomainCertificateStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CustomDomainCertificateStatus) Ptr

Ptr returns reference to CustomDomainCertificateStatus value

func (*CustomDomainCertificateStatus) UnmarshalJSON

func (v *CustomDomainCertificateStatus) UnmarshalJSON(src []byte) error

type CustomDomainCreateSchema

type CustomDomainCreateSchema struct {
	Hostname             string `json:"hostname"`
	AdditionalProperties map[string]interface{}
}

CustomDomainCreateSchema struct for CustomDomainCreateSchema

func NewCustomDomainCreateSchema

func NewCustomDomainCreateSchema(hostname string) *CustomDomainCreateSchema

NewCustomDomainCreateSchema instantiates a new CustomDomainCreateSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCustomDomainCreateSchemaWithDefaults

func NewCustomDomainCreateSchemaWithDefaults() *CustomDomainCreateSchema

NewCustomDomainCreateSchemaWithDefaults instantiates a new CustomDomainCreateSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CustomDomainCreateSchema) GetHostname

func (o *CustomDomainCreateSchema) GetHostname() string

GetHostname returns the Hostname field value

func (*CustomDomainCreateSchema) GetHostnameOk

func (o *CustomDomainCreateSchema) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (CustomDomainCreateSchema) MarshalJSON

func (o CustomDomainCreateSchema) MarshalJSON() ([]byte, error)

func (*CustomDomainCreateSchema) SetHostname

func (o *CustomDomainCreateSchema) SetHostname(v string)

SetHostname sets field value

func (CustomDomainCreateSchema) ToMap

func (o CustomDomainCreateSchema) ToMap() (map[string]interface{}, error)

func (*CustomDomainCreateSchema) UnmarshalJSON

func (o *CustomDomainCreateSchema) UnmarshalJSON(data []byte) (err error)

type CustomDomainSchema

type CustomDomainSchema struct {
	CertificateStatus    CustomDomainCertificateStatus `json:"certificate_status"`
	CnameRecord          string                        `json:"cname_record"`
	CnameValue           string                        `json:"cname_value"`
	CreatedAt            time.Time                     `json:"created_at"`
	DcvCnameRecord       string                        `json:"dcv_cname_record"`
	DcvCnameValue        string                        `json:"dcv_cname_value"`
	EnvironmentId        string                        `json:"environment_id"`
	Hostname             string                        `json:"hostname"`
	Id                   string                        `json:"id"`
	LastVerifiedAt       NullableTime                  `json:"last_verified_at"`
	Status               CustomDomainStatus            `json:"status"`
	UpdatedAt            time.Time                     `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

CustomDomainSchema struct for CustomDomainSchema

func NewCustomDomainSchema

func NewCustomDomainSchema(certificateStatus CustomDomainCertificateStatus, cnameRecord string, cnameValue string, createdAt time.Time, dcvCnameRecord string, dcvCnameValue string, environmentId string, hostname string, id string, lastVerifiedAt NullableTime, status CustomDomainStatus, updatedAt time.Time) *CustomDomainSchema

NewCustomDomainSchema instantiates a new CustomDomainSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCustomDomainSchemaWithDefaults

func NewCustomDomainSchemaWithDefaults() *CustomDomainSchema

NewCustomDomainSchemaWithDefaults instantiates a new CustomDomainSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CustomDomainSchema) GetCertificateStatus

func (o *CustomDomainSchema) GetCertificateStatus() CustomDomainCertificateStatus

GetCertificateStatus returns the CertificateStatus field value

func (*CustomDomainSchema) GetCertificateStatusOk

func (o *CustomDomainSchema) GetCertificateStatusOk() (*CustomDomainCertificateStatus, bool)

GetCertificateStatusOk returns a tuple with the CertificateStatus field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetCnameRecord

func (o *CustomDomainSchema) GetCnameRecord() string

GetCnameRecord returns the CnameRecord field value

func (*CustomDomainSchema) GetCnameRecordOk

func (o *CustomDomainSchema) GetCnameRecordOk() (*string, bool)

GetCnameRecordOk returns a tuple with the CnameRecord field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetCnameValue

func (o *CustomDomainSchema) GetCnameValue() string

GetCnameValue returns the CnameValue field value

func (*CustomDomainSchema) GetCnameValueOk

func (o *CustomDomainSchema) GetCnameValueOk() (*string, bool)

GetCnameValueOk returns a tuple with the CnameValue field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetCreatedAt

func (o *CustomDomainSchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*CustomDomainSchema) GetCreatedAtOk

func (o *CustomDomainSchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetDcvCnameRecord

func (o *CustomDomainSchema) GetDcvCnameRecord() string

GetDcvCnameRecord returns the DcvCnameRecord field value

func (*CustomDomainSchema) GetDcvCnameRecordOk

func (o *CustomDomainSchema) GetDcvCnameRecordOk() (*string, bool)

GetDcvCnameRecordOk returns a tuple with the DcvCnameRecord field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetDcvCnameValue

func (o *CustomDomainSchema) GetDcvCnameValue() string

GetDcvCnameValue returns the DcvCnameValue field value

func (*CustomDomainSchema) GetDcvCnameValueOk

func (o *CustomDomainSchema) GetDcvCnameValueOk() (*string, bool)

GetDcvCnameValueOk returns a tuple with the DcvCnameValue field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetEnvironmentId

func (o *CustomDomainSchema) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value

func (*CustomDomainSchema) GetEnvironmentIdOk

func (o *CustomDomainSchema) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetHostname

func (o *CustomDomainSchema) GetHostname() string

GetHostname returns the Hostname field value

func (*CustomDomainSchema) GetHostnameOk

func (o *CustomDomainSchema) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetId

func (o *CustomDomainSchema) GetId() string

GetId returns the Id field value

func (*CustomDomainSchema) GetIdOk

func (o *CustomDomainSchema) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetLastVerifiedAt

func (o *CustomDomainSchema) GetLastVerifiedAt() time.Time

GetLastVerifiedAt returns the LastVerifiedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*CustomDomainSchema) GetLastVerifiedAtOk

func (o *CustomDomainSchema) GetLastVerifiedAtOk() (*time.Time, bool)

GetLastVerifiedAtOk returns a tuple with the LastVerifiedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CustomDomainSchema) GetStatus

func (o *CustomDomainSchema) GetStatus() CustomDomainStatus

GetStatus returns the Status field value

func (*CustomDomainSchema) GetStatusOk

func (o *CustomDomainSchema) GetStatusOk() (*CustomDomainStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*CustomDomainSchema) GetUpdatedAt

func (o *CustomDomainSchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*CustomDomainSchema) GetUpdatedAtOk

func (o *CustomDomainSchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (CustomDomainSchema) MarshalJSON

func (o CustomDomainSchema) MarshalJSON() ([]byte, error)

func (*CustomDomainSchema) SetCertificateStatus

func (o *CustomDomainSchema) SetCertificateStatus(v CustomDomainCertificateStatus)

SetCertificateStatus sets field value

func (*CustomDomainSchema) SetCnameRecord

func (o *CustomDomainSchema) SetCnameRecord(v string)

SetCnameRecord sets field value

func (*CustomDomainSchema) SetCnameValue

func (o *CustomDomainSchema) SetCnameValue(v string)

SetCnameValue sets field value

func (*CustomDomainSchema) SetCreatedAt

func (o *CustomDomainSchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*CustomDomainSchema) SetDcvCnameRecord

func (o *CustomDomainSchema) SetDcvCnameRecord(v string)

SetDcvCnameRecord sets field value

func (*CustomDomainSchema) SetDcvCnameValue

func (o *CustomDomainSchema) SetDcvCnameValue(v string)

SetDcvCnameValue sets field value

func (*CustomDomainSchema) SetEnvironmentId

func (o *CustomDomainSchema) SetEnvironmentId(v string)

SetEnvironmentId sets field value

func (*CustomDomainSchema) SetHostname

func (o *CustomDomainSchema) SetHostname(v string)

SetHostname sets field value

func (*CustomDomainSchema) SetId

func (o *CustomDomainSchema) SetId(v string)

SetId sets field value

func (*CustomDomainSchema) SetLastVerifiedAt

func (o *CustomDomainSchema) SetLastVerifiedAt(v time.Time)

SetLastVerifiedAt sets field value

func (*CustomDomainSchema) SetStatus

func (o *CustomDomainSchema) SetStatus(v CustomDomainStatus)

SetStatus sets field value

func (*CustomDomainSchema) SetUpdatedAt

func (o *CustomDomainSchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (CustomDomainSchema) ToMap

func (o CustomDomainSchema) ToMap() (map[string]interface{}, error)

func (*CustomDomainSchema) UnmarshalJSON

func (o *CustomDomainSchema) UnmarshalJSON(data []byte) (err error)

type CustomDomainStatus

type CustomDomainStatus string

CustomDomainStatus Represents connection status for custom domains.

const (
	CUSTOMDOMAINSTATUS_PENDING   CustomDomainStatus = "PENDING"
	CUSTOMDOMAINSTATUS_CONNECTED CustomDomainStatus = "CONNECTED"
	CUSTOMDOMAINSTATUS_FAILED    CustomDomainStatus = "FAILED"
)

List of CustomDomainStatus

func NewCustomDomainStatusFromValue

func NewCustomDomainStatusFromValue(v string) (*CustomDomainStatus, error)

NewCustomDomainStatusFromValue returns a pointer to a valid CustomDomainStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CustomDomainStatus) IsValid

func (v CustomDomainStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CustomDomainStatus) Ptr

Ptr returns reference to CustomDomainStatus value

func (*CustomDomainStatus) UnmarshalJSON

func (v *CustomDomainStatus) UnmarshalJSON(src []byte) error

type CustomMetadataValue

type CustomMetadataValue struct {
	Bool    *bool
	Float32 *float32
	Int32   *int32
	String  *string
}

CustomMetadataValue struct for CustomMetadataValue

func (CustomMetadataValue) MarshalJSON

func (src CustomMetadataValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CustomMetadataValue) UnmarshalJSON

func (dst *CustomMetadataValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HTTPValidationError

type HTTPValidationError struct {
	Detail               []ValidationError `json:"detail,omitempty"`
	AdditionalProperties map[string]interface{}
}

HTTPValidationError struct for HTTPValidationError

func NewHTTPValidationError

func NewHTTPValidationError() *HTTPValidationError

NewHTTPValidationError instantiates a new HTTPValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHTTPValidationErrorWithDefaults

func NewHTTPValidationErrorWithDefaults() *HTTPValidationError

NewHTTPValidationErrorWithDefaults instantiates a new HTTPValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HTTPValidationError) GetDetail

func (o *HTTPValidationError) GetDetail() []ValidationError

GetDetail returns the Detail field value if set, zero value otherwise.

func (*HTTPValidationError) GetDetailOk

func (o *HTTPValidationError) GetDetailOk() ([]ValidationError, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HTTPValidationError) HasDetail

func (o *HTTPValidationError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (HTTPValidationError) MarshalJSON

func (o HTTPValidationError) MarshalJSON() ([]byte, error)

func (*HTTPValidationError) SetDetail

func (o *HTTPValidationError) SetDetail(v []ValidationError)

SetDetail gets a reference to the given []ValidationError and assigns it to the Detail field.

func (HTTPValidationError) ToMap

func (o HTTPValidationError) ToMap() (map[string]interface{}, error)

func (*HTTPValidationError) UnmarshalJSON

func (o *HTTPValidationError) UnmarshalJSON(data []byte) (err error)

type ImageDownloadJobCreateSchema

type ImageDownloadJobCreateSchema struct {
	ImageIds             []string `json:"image_ids"`
	AdditionalProperties map[string]interface{}
}

ImageDownloadJobCreateSchema struct for ImageDownloadJobCreateSchema

func NewImageDownloadJobCreateSchema

func NewImageDownloadJobCreateSchema(imageIds []string) *ImageDownloadJobCreateSchema

NewImageDownloadJobCreateSchema instantiates a new ImageDownloadJobCreateSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImageDownloadJobCreateSchemaWithDefaults

func NewImageDownloadJobCreateSchemaWithDefaults() *ImageDownloadJobCreateSchema

NewImageDownloadJobCreateSchemaWithDefaults instantiates a new ImageDownloadJobCreateSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImageDownloadJobCreateSchema) GetImageIds

func (o *ImageDownloadJobCreateSchema) GetImageIds() []string

GetImageIds returns the ImageIds field value

func (*ImageDownloadJobCreateSchema) GetImageIdsOk

func (o *ImageDownloadJobCreateSchema) GetImageIdsOk() ([]string, bool)

GetImageIdsOk returns a tuple with the ImageIds field value and a boolean to check if the value has been set.

func (ImageDownloadJobCreateSchema) MarshalJSON

func (o ImageDownloadJobCreateSchema) MarshalJSON() ([]byte, error)

func (*ImageDownloadJobCreateSchema) SetImageIds

func (o *ImageDownloadJobCreateSchema) SetImageIds(v []string)

SetImageIds sets field value

func (ImageDownloadJobCreateSchema) ToMap

func (o ImageDownloadJobCreateSchema) ToMap() (map[string]interface{}, error)

func (*ImageDownloadJobCreateSchema) UnmarshalJSON

func (o *ImageDownloadJobCreateSchema) UnmarshalJSON(data []byte) (err error)

type ImageDownloadJobSchema

type ImageDownloadJobSchema struct {
	CreatedAt            time.Time           `json:"created_at"`
	DownloadUrl          NullableString      `json:"download_url"`
	EnvironmentId        NullableString      `json:"environment_id"`
	Id                   string              `json:"id"`
	ImageIds             []string            `json:"image_ids"`
	Status               ImageDownloadStatus `json:"status"`
	UpdatedAt            time.Time           `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

ImageDownloadJobSchema struct for ImageDownloadJobSchema

func NewImageDownloadJobSchema

func NewImageDownloadJobSchema(createdAt time.Time, downloadUrl NullableString, environmentId NullableString, id string, imageIds []string, status ImageDownloadStatus, updatedAt time.Time) *ImageDownloadJobSchema

NewImageDownloadJobSchema instantiates a new ImageDownloadJobSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImageDownloadJobSchemaWithDefaults

func NewImageDownloadJobSchemaWithDefaults() *ImageDownloadJobSchema

NewImageDownloadJobSchemaWithDefaults instantiates a new ImageDownloadJobSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImageDownloadJobSchema) GetCreatedAt

func (o *ImageDownloadJobSchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ImageDownloadJobSchema) GetCreatedAtOk

func (o *ImageDownloadJobSchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ImageDownloadJobSchema) GetDownloadUrl

func (o *ImageDownloadJobSchema) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ImageDownloadJobSchema) GetDownloadUrlOk

func (o *ImageDownloadJobSchema) GetDownloadUrlOk() (*string, bool)

GetDownloadUrlOk returns a tuple with the DownloadUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageDownloadJobSchema) GetEnvironmentId

func (o *ImageDownloadJobSchema) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value If the value is explicit nil, the zero value for string will be returned

func (*ImageDownloadJobSchema) GetEnvironmentIdOk

func (o *ImageDownloadJobSchema) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageDownloadJobSchema) GetId

func (o *ImageDownloadJobSchema) GetId() string

GetId returns the Id field value

func (*ImageDownloadJobSchema) GetIdOk

func (o *ImageDownloadJobSchema) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ImageDownloadJobSchema) GetImageIds

func (o *ImageDownloadJobSchema) GetImageIds() []string

GetImageIds returns the ImageIds field value

func (*ImageDownloadJobSchema) GetImageIdsOk

func (o *ImageDownloadJobSchema) GetImageIdsOk() ([]string, bool)

GetImageIdsOk returns a tuple with the ImageIds field value and a boolean to check if the value has been set.

func (*ImageDownloadJobSchema) GetStatus

GetStatus returns the Status field value

func (*ImageDownloadJobSchema) GetStatusOk

func (o *ImageDownloadJobSchema) GetStatusOk() (*ImageDownloadStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ImageDownloadJobSchema) GetUpdatedAt

func (o *ImageDownloadJobSchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ImageDownloadJobSchema) GetUpdatedAtOk

func (o *ImageDownloadJobSchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (ImageDownloadJobSchema) MarshalJSON

func (o ImageDownloadJobSchema) MarshalJSON() ([]byte, error)

func (*ImageDownloadJobSchema) SetCreatedAt

func (o *ImageDownloadJobSchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ImageDownloadJobSchema) SetDownloadUrl

func (o *ImageDownloadJobSchema) SetDownloadUrl(v string)

SetDownloadUrl sets field value

func (*ImageDownloadJobSchema) SetEnvironmentId

func (o *ImageDownloadJobSchema) SetEnvironmentId(v string)

SetEnvironmentId sets field value

func (*ImageDownloadJobSchema) SetId

func (o *ImageDownloadJobSchema) SetId(v string)

SetId sets field value

func (*ImageDownloadJobSchema) SetImageIds

func (o *ImageDownloadJobSchema) SetImageIds(v []string)

SetImageIds sets field value

func (*ImageDownloadJobSchema) SetStatus

SetStatus sets field value

func (*ImageDownloadJobSchema) SetUpdatedAt

func (o *ImageDownloadJobSchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ImageDownloadJobSchema) ToMap

func (o ImageDownloadJobSchema) ToMap() (map[string]interface{}, error)

func (*ImageDownloadJobSchema) UnmarshalJSON

func (o *ImageDownloadJobSchema) UnmarshalJSON(data []byte) (err error)

type ImageDownloadStatus

type ImageDownloadStatus string

ImageDownloadStatus Represents the download state for a bulk image download job.

const (
	IMAGEDOWNLOADSTATUS_PENDING    ImageDownloadStatus = "PENDING"
	IMAGEDOWNLOADSTATUS_PROCESSING ImageDownloadStatus = "PROCESSING"
	IMAGEDOWNLOADSTATUS_READY      ImageDownloadStatus = "READY"
	IMAGEDOWNLOADSTATUS_FAILED     ImageDownloadStatus = "FAILED"
)

List of ImageDownloadStatus

func NewImageDownloadStatusFromValue

func NewImageDownloadStatusFromValue(v string) (*ImageDownloadStatus, error)

NewImageDownloadStatusFromValue returns a pointer to a valid ImageDownloadStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ImageDownloadStatus) IsValid

func (v ImageDownloadStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ImageDownloadStatus) Ptr

Ptr returns reference to ImageDownloadStatus value

func (*ImageDownloadStatus) UnmarshalJSON

func (v *ImageDownloadStatus) UnmarshalJSON(src []byte) error

type ImageSchema

type ImageSchema struct {
	CanUpload             bool                           `json:"can_upload"`
	CdnUrl                string                         `json:"cdn_url"`
	CreatedAt             time.Time                      `json:"created_at"`
	CustomMetadata        map[string]CustomMetadataValue `json:"custom_metadata"`
	DeletedAt             NullableTime                   `json:"deleted_at"`
	EnvironmentId         NullableString                 `json:"environment_id"`
	ExifData              map[string]interface{}         `json:"exif_data"`
	Extension             string                         `json:"extension"`
	HashSha256            NullableString                 `json:"hash_sha256"`
	Height                int32                          `json:"height"`
	Id                    string                         `json:"id"`
	IdempotencyKey        NullableString                 `json:"idempotency_key"`
	IsDirectlyDeliverable bool                           `json:"is_directly_deliverable"`
	MimeType              SupportedMimeType              `json:"mime_type"`
	OriginalFilename      string                         `json:"original_filename"`
	ProcessedMetadataAt   NullableTime                   `json:"processed_metadata_at"`
	Purpose               NullableString                 `json:"purpose"`
	SizeBytes             int32                          `json:"size_bytes"`
	Status                ImageStatus                    `json:"status"`
	UpdatedAt             time.Time                      `json:"updated_at"`
	UploadTokenId         NullableString                 `json:"upload_token_id"`
	Width                 int32                          `json:"width"`
	AdditionalProperties  map[string]interface{}
}

ImageSchema struct for ImageSchema

func NewImageSchema

func NewImageSchema(canUpload bool, cdnUrl string, createdAt time.Time, customMetadata map[string]CustomMetadataValue, deletedAt NullableTime, environmentId NullableString, exifData map[string]interface{}, extension string, hashSha256 NullableString, height int32, id string, idempotencyKey NullableString, isDirectlyDeliverable bool, mimeType SupportedMimeType, originalFilename string, processedMetadataAt NullableTime, purpose NullableString, sizeBytes int32, status ImageStatus, updatedAt time.Time, uploadTokenId NullableString, width int32) *ImageSchema

NewImageSchema instantiates a new ImageSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImageSchemaWithDefaults

func NewImageSchemaWithDefaults() *ImageSchema

NewImageSchemaWithDefaults instantiates a new ImageSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImageSchema) GetCanUpload added in v0.2.1

func (o *ImageSchema) GetCanUpload() bool

GetCanUpload returns the CanUpload field value

func (*ImageSchema) GetCanUploadOk added in v0.2.1

func (o *ImageSchema) GetCanUploadOk() (*bool, bool)

GetCanUploadOk returns a tuple with the CanUpload field value and a boolean to check if the value has been set.

func (*ImageSchema) GetCdnUrl

func (o *ImageSchema) GetCdnUrl() string

GetCdnUrl returns the CdnUrl field value

func (*ImageSchema) GetCdnUrlOk

func (o *ImageSchema) GetCdnUrlOk() (*string, bool)

GetCdnUrlOk returns a tuple with the CdnUrl field value and a boolean to check if the value has been set.

func (*ImageSchema) GetCreatedAt

func (o *ImageSchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ImageSchema) GetCreatedAtOk

func (o *ImageSchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ImageSchema) GetCustomMetadata

func (o *ImageSchema) GetCustomMetadata() map[string]CustomMetadataValue

GetCustomMetadata returns the CustomMetadata field value

func (*ImageSchema) GetCustomMetadataOk

func (o *ImageSchema) GetCustomMetadataOk() (map[string]CustomMetadataValue, bool)

GetCustomMetadataOk returns a tuple with the CustomMetadata field value and a boolean to check if the value has been set.

func (*ImageSchema) GetDeletedAt

func (o *ImageSchema) GetDeletedAt() time.Time

GetDeletedAt returns the DeletedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*ImageSchema) GetDeletedAtOk

func (o *ImageSchema) GetDeletedAtOk() (*time.Time, bool)

GetDeletedAtOk returns a tuple with the DeletedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetEnvironmentId

func (o *ImageSchema) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value If the value is explicit nil, the zero value for string will be returned

func (*ImageSchema) GetEnvironmentIdOk

func (o *ImageSchema) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetExifData

func (o *ImageSchema) GetExifData() map[string]interface{}

GetExifData returns the ExifData field value

func (*ImageSchema) GetExifDataOk

func (o *ImageSchema) GetExifDataOk() (map[string]interface{}, bool)

GetExifDataOk returns a tuple with the ExifData field value and a boolean to check if the value has been set.

func (*ImageSchema) GetExtension

func (o *ImageSchema) GetExtension() string

GetExtension returns the Extension field value

func (*ImageSchema) GetExtensionOk

func (o *ImageSchema) GetExtensionOk() (*string, bool)

GetExtensionOk returns a tuple with the Extension field value and a boolean to check if the value has been set.

func (*ImageSchema) GetHashSha256

func (o *ImageSchema) GetHashSha256() string

GetHashSha256 returns the HashSha256 field value If the value is explicit nil, the zero value for string will be returned

func (*ImageSchema) GetHashSha256Ok

func (o *ImageSchema) GetHashSha256Ok() (*string, bool)

GetHashSha256Ok returns a tuple with the HashSha256 field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetHeight

func (o *ImageSchema) GetHeight() int32

GetHeight returns the Height field value

func (*ImageSchema) GetHeightOk

func (o *ImageSchema) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value and a boolean to check if the value has been set.

func (*ImageSchema) GetId

func (o *ImageSchema) GetId() string

GetId returns the Id field value

func (*ImageSchema) GetIdOk

func (o *ImageSchema) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ImageSchema) GetIdempotencyKey

func (o *ImageSchema) GetIdempotencyKey() string

GetIdempotencyKey returns the IdempotencyKey field value If the value is explicit nil, the zero value for string will be returned

func (*ImageSchema) GetIdempotencyKeyOk

func (o *ImageSchema) GetIdempotencyKeyOk() (*string, bool)

GetIdempotencyKeyOk returns a tuple with the IdempotencyKey field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetIsDirectlyDeliverable added in v0.2.1

func (o *ImageSchema) GetIsDirectlyDeliverable() bool

GetIsDirectlyDeliverable returns the IsDirectlyDeliverable field value

func (*ImageSchema) GetIsDirectlyDeliverableOk added in v0.2.1

func (o *ImageSchema) GetIsDirectlyDeliverableOk() (*bool, bool)

GetIsDirectlyDeliverableOk returns a tuple with the IsDirectlyDeliverable field value and a boolean to check if the value has been set.

func (*ImageSchema) GetMimeType

func (o *ImageSchema) GetMimeType() SupportedMimeType

GetMimeType returns the MimeType field value

func (*ImageSchema) GetMimeTypeOk

func (o *ImageSchema) GetMimeTypeOk() (*SupportedMimeType, bool)

GetMimeTypeOk returns a tuple with the MimeType field value and a boolean to check if the value has been set.

func (*ImageSchema) GetOriginalFilename

func (o *ImageSchema) GetOriginalFilename() string

GetOriginalFilename returns the OriginalFilename field value

func (*ImageSchema) GetOriginalFilenameOk

func (o *ImageSchema) GetOriginalFilenameOk() (*string, bool)

GetOriginalFilenameOk returns a tuple with the OriginalFilename field value and a boolean to check if the value has been set.

func (*ImageSchema) GetProcessedMetadataAt

func (o *ImageSchema) GetProcessedMetadataAt() time.Time

GetProcessedMetadataAt returns the ProcessedMetadataAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*ImageSchema) GetProcessedMetadataAtOk

func (o *ImageSchema) GetProcessedMetadataAtOk() (*time.Time, bool)

GetProcessedMetadataAtOk returns a tuple with the ProcessedMetadataAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetPurpose

func (o *ImageSchema) GetPurpose() string

GetPurpose returns the Purpose field value If the value is explicit nil, the zero value for string will be returned

func (*ImageSchema) GetPurposeOk

func (o *ImageSchema) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetSizeBytes

func (o *ImageSchema) GetSizeBytes() int32

GetSizeBytes returns the SizeBytes field value

func (*ImageSchema) GetSizeBytesOk

func (o *ImageSchema) GetSizeBytesOk() (*int32, bool)

GetSizeBytesOk returns a tuple with the SizeBytes field value and a boolean to check if the value has been set.

func (*ImageSchema) GetStatus

func (o *ImageSchema) GetStatus() ImageStatus

GetStatus returns the Status field value

func (*ImageSchema) GetStatusOk

func (o *ImageSchema) GetStatusOk() (*ImageStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ImageSchema) GetUpdatedAt

func (o *ImageSchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ImageSchema) GetUpdatedAtOk

func (o *ImageSchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*ImageSchema) GetUploadTokenId

func (o *ImageSchema) GetUploadTokenId() string

GetUploadTokenId returns the UploadTokenId field value If the value is explicit nil, the zero value for string will be returned

func (*ImageSchema) GetUploadTokenIdOk

func (o *ImageSchema) GetUploadTokenIdOk() (*string, bool)

GetUploadTokenIdOk returns a tuple with the UploadTokenId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ImageSchema) GetWidth

func (o *ImageSchema) GetWidth() int32

GetWidth returns the Width field value

func (*ImageSchema) GetWidthOk

func (o *ImageSchema) GetWidthOk() (*int32, bool)

GetWidthOk returns a tuple with the Width field value and a boolean to check if the value has been set.

func (ImageSchema) MarshalJSON

func (o ImageSchema) MarshalJSON() ([]byte, error)

func (*ImageSchema) SetCanUpload added in v0.2.1

func (o *ImageSchema) SetCanUpload(v bool)

SetCanUpload sets field value

func (*ImageSchema) SetCdnUrl

func (o *ImageSchema) SetCdnUrl(v string)

SetCdnUrl sets field value

func (*ImageSchema) SetCreatedAt

func (o *ImageSchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ImageSchema) SetCustomMetadata

func (o *ImageSchema) SetCustomMetadata(v map[string]CustomMetadataValue)

SetCustomMetadata sets field value

func (*ImageSchema) SetDeletedAt

func (o *ImageSchema) SetDeletedAt(v time.Time)

SetDeletedAt sets field value

func (*ImageSchema) SetEnvironmentId

func (o *ImageSchema) SetEnvironmentId(v string)

SetEnvironmentId sets field value

func (*ImageSchema) SetExifData

func (o *ImageSchema) SetExifData(v map[string]interface{})

SetExifData sets field value

func (*ImageSchema) SetExtension

func (o *ImageSchema) SetExtension(v string)

SetExtension sets field value

func (*ImageSchema) SetHashSha256

func (o *ImageSchema) SetHashSha256(v string)

SetHashSha256 sets field value

func (*ImageSchema) SetHeight

func (o *ImageSchema) SetHeight(v int32)

SetHeight sets field value

func (*ImageSchema) SetId

func (o *ImageSchema) SetId(v string)

SetId sets field value

func (*ImageSchema) SetIdempotencyKey

func (o *ImageSchema) SetIdempotencyKey(v string)

SetIdempotencyKey sets field value

func (*ImageSchema) SetIsDirectlyDeliverable added in v0.2.1

func (o *ImageSchema) SetIsDirectlyDeliverable(v bool)

SetIsDirectlyDeliverable sets field value

func (*ImageSchema) SetMimeType

func (o *ImageSchema) SetMimeType(v SupportedMimeType)

SetMimeType sets field value

func (*ImageSchema) SetOriginalFilename

func (o *ImageSchema) SetOriginalFilename(v string)

SetOriginalFilename sets field value

func (*ImageSchema) SetProcessedMetadataAt

func (o *ImageSchema) SetProcessedMetadataAt(v time.Time)

SetProcessedMetadataAt sets field value

func (*ImageSchema) SetPurpose

func (o *ImageSchema) SetPurpose(v string)

SetPurpose sets field value

func (*ImageSchema) SetSizeBytes

func (o *ImageSchema) SetSizeBytes(v int32)

SetSizeBytes sets field value

func (*ImageSchema) SetStatus

func (o *ImageSchema) SetStatus(v ImageStatus)

SetStatus sets field value

func (*ImageSchema) SetUpdatedAt

func (o *ImageSchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*ImageSchema) SetUploadTokenId

func (o *ImageSchema) SetUploadTokenId(v string)

SetUploadTokenId sets field value

func (*ImageSchema) SetWidth

func (o *ImageSchema) SetWidth(v int32)

SetWidth sets field value

func (ImageSchema) ToMap

func (o ImageSchema) ToMap() (map[string]interface{}, error)

func (*ImageSchema) UnmarshalJSON

func (o *ImageSchema) UnmarshalJSON(data []byte) (err error)

type ImageStatus

type ImageStatus string

ImageStatus Represents the processing state for an image.

const (
	IMAGESTATUS_PENDING    ImageStatus = "PENDING"
	IMAGESTATUS_PROCESSING ImageStatus = "PROCESSING"
	IMAGESTATUS_READY      ImageStatus = "READY"
	IMAGESTATUS_QUARANTINE ImageStatus = "QUARANTINE"
)

List of ImageStatus

func NewImageStatusFromValue

func NewImageStatusFromValue(v string) (*ImageStatus, error)

NewImageStatusFromValue returns a pointer to a valid ImageStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ImageStatus) IsValid

func (v ImageStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ImageStatus) Ptr

func (v ImageStatus) Ptr() *ImageStatus

Ptr returns reference to ImageStatus value

func (*ImageStatus) UnmarshalJSON

func (v *ImageStatus) UnmarshalJSON(src []byte) error

type ImagesAPI

type ImagesAPI interface {

	/*
		ImagesBulkDelete Bulk Delete Images

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiImagesBulkDeleteRequest
	*/
	ImagesBulkDelete(ctx context.Context) ApiImagesBulkDeleteRequest

	// ImagesBulkDeleteExecute executes the request
	//  @return map[string]string
	ImagesBulkDeleteExecute(r ApiImagesBulkDeleteRequest) (map[string]string, *http.Response, error)

	/*
		ImagesCreate Create Standard Upload

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiImagesCreateRequest
	*/
	ImagesCreate(ctx context.Context) ApiImagesCreateRequest

	// ImagesCreateExecute executes the request
	//  @return StandardUploadResponseSchema
	ImagesCreateExecute(r ApiImagesCreateRequest) (*StandardUploadResponseSchema, *http.Response, error)

	/*
		ImagesCreateBulkDownloadJob Create Bulk Image Download Job

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiImagesCreateBulkDownloadJobRequest
	*/
	ImagesCreateBulkDownloadJob(ctx context.Context) ApiImagesCreateBulkDownloadJobRequest

	// ImagesCreateBulkDownloadJobExecute executes the request
	//  @return ImageDownloadJobSchema
	ImagesCreateBulkDownloadJobExecute(r ApiImagesCreateBulkDownloadJobRequest) (*ImageDownloadJobSchema, *http.Response, error)

	/*
		ImagesCreateUploadToken Create Upload Token

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiImagesCreateUploadTokenRequest
	*/
	ImagesCreateUploadToken(ctx context.Context) ApiImagesCreateUploadTokenRequest

	// ImagesCreateUploadTokenExecute executes the request
	//  @return UploadTokenCreateResponseSchema
	ImagesCreateUploadTokenExecute(r ApiImagesCreateUploadTokenRequest) (*UploadTokenCreateResponseSchema, *http.Response, error)

	/*
		ImagesDelete Delete Image By ID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param imageId
		@return ApiImagesDeleteRequest
	*/
	ImagesDelete(ctx context.Context, imageId string) ApiImagesDeleteRequest

	// ImagesDeleteExecute executes the request
	//  @return map[string]string
	ImagesDeleteExecute(r ApiImagesDeleteRequest) (map[string]string, *http.Response, error)

	/*
		ImagesList List Images

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiImagesListRequest
	*/
	ImagesList(ctx context.Context) ApiImagesListRequest

	// ImagesListExecute executes the request
	//  @return []ImageSchema
	ImagesListExecute(r ApiImagesListRequest) ([]ImageSchema, *http.Response, error)

	/*
		ImagesRetrieve Get Image By ID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param imageId
		@return ApiImagesRetrieveRequest
	*/
	ImagesRetrieve(ctx context.Context, imageId string) ApiImagesRetrieveRequest

	// ImagesRetrieveExecute executes the request
	//  @return ImageSchema
	ImagesRetrieveExecute(r ApiImagesRetrieveRequest) (*ImageSchema, *http.Response, error)

	/*
		ImagesRetrieveBulkDownloadJob Get Bulk Image Download Job

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param imageDownloadJobId
		@return ApiImagesRetrieveBulkDownloadJobRequest
	*/
	ImagesRetrieveBulkDownloadJob(ctx context.Context, imageDownloadJobId string) ApiImagesRetrieveBulkDownloadJobRequest

	// ImagesRetrieveBulkDownloadJobExecute executes the request
	//  @return ImageDownloadJobSchema
	ImagesRetrieveBulkDownloadJobExecute(r ApiImagesRetrieveBulkDownloadJobRequest) (*ImageDownloadJobSchema, *http.Response, error)
}

type ImagesAPIService

type ImagesAPIService service

ImagesAPIService ImagesAPI service

func (*ImagesAPIService) ImagesBulkDelete

ImagesBulkDelete Bulk Delete Images

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImagesBulkDeleteRequest

func (*ImagesAPIService) ImagesBulkDeleteExecute

func (a *ImagesAPIService) ImagesBulkDeleteExecute(r ApiImagesBulkDeleteRequest) (map[string]string, *http.Response, error)

Execute executes the request

@return map[string]string

func (*ImagesAPIService) ImagesCreate

ImagesCreate Create Standard Upload

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImagesCreateRequest

func (*ImagesAPIService) ImagesCreateBulkDownloadJob

func (a *ImagesAPIService) ImagesCreateBulkDownloadJob(ctx context.Context) ApiImagesCreateBulkDownloadJobRequest

ImagesCreateBulkDownloadJob Create Bulk Image Download Job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImagesCreateBulkDownloadJobRequest

func (*ImagesAPIService) ImagesCreateBulkDownloadJobExecute

Execute executes the request

@return ImageDownloadJobSchema

func (*ImagesAPIService) ImagesCreateExecute

Execute executes the request

@return StandardUploadResponseSchema

func (*ImagesAPIService) ImagesCreateUploadToken

func (a *ImagesAPIService) ImagesCreateUploadToken(ctx context.Context) ApiImagesCreateUploadTokenRequest

ImagesCreateUploadToken Create Upload Token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImagesCreateUploadTokenRequest

func (*ImagesAPIService) ImagesCreateUploadTokenExecute

Execute executes the request

@return UploadTokenCreateResponseSchema

func (*ImagesAPIService) ImagesDelete

func (a *ImagesAPIService) ImagesDelete(ctx context.Context, imageId string) ApiImagesDeleteRequest

ImagesDelete Delete Image By ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param imageId
@return ApiImagesDeleteRequest

func (*ImagesAPIService) ImagesDeleteExecute

func (a *ImagesAPIService) ImagesDeleteExecute(r ApiImagesDeleteRequest) (map[string]string, *http.Response, error)

Execute executes the request

@return map[string]string

func (*ImagesAPIService) ImagesList

ImagesList List Images

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiImagesListRequest

func (*ImagesAPIService) ImagesListExecute

func (a *ImagesAPIService) ImagesListExecute(r ApiImagesListRequest) ([]ImageSchema, *http.Response, error)

Execute executes the request

@return []ImageSchema

func (*ImagesAPIService) ImagesRetrieve

func (a *ImagesAPIService) ImagesRetrieve(ctx context.Context, imageId string) ApiImagesRetrieveRequest

ImagesRetrieve Get Image By ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param imageId
@return ApiImagesRetrieveRequest

func (*ImagesAPIService) ImagesRetrieveBulkDownloadJob

func (a *ImagesAPIService) ImagesRetrieveBulkDownloadJob(ctx context.Context, imageDownloadJobId string) ApiImagesRetrieveBulkDownloadJobRequest

ImagesRetrieveBulkDownloadJob Get Bulk Image Download Job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param imageDownloadJobId
@return ApiImagesRetrieveBulkDownloadJobRequest

func (*ImagesAPIService) ImagesRetrieveBulkDownloadJobExecute

func (a *ImagesAPIService) ImagesRetrieveBulkDownloadJobExecute(r ApiImagesRetrieveBulkDownloadJobRequest) (*ImageDownloadJobSchema, *http.Response, error)

Execute executes the request

@return ImageDownloadJobSchema

func (*ImagesAPIService) ImagesRetrieveExecute

func (a *ImagesAPIService) ImagesRetrieveExecute(r ApiImagesRetrieveRequest) (*ImageSchema, *http.Response, error)

Execute executes the request

@return ImageSchema

type LocationInner

type LocationInner struct {
	Int32  *int32
	String *string
}

LocationInner struct for LocationInner

func (LocationInner) MarshalJSON

func (src LocationInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LocationInner) UnmarshalJSON

func (dst *LocationInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MetricsAPI

type MetricsAPI interface {

	/*
		MetricsGetDatasets Get Metrics Datasets

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiMetricsGetDatasetsRequest
	*/
	MetricsGetDatasets(ctx context.Context) ApiMetricsGetDatasetsRequest

	// MetricsGetDatasetsExecute executes the request
	//  @return MetricsDatasetsSchema
	MetricsGetDatasetsExecute(r ApiMetricsGetDatasetsRequest) (*MetricsDatasetsSchema, *http.Response, error)

	/*
		MetricsGetStats Get Metrics Stats

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiMetricsGetStatsRequest
	*/
	MetricsGetStats(ctx context.Context) ApiMetricsGetStatsRequest

	// MetricsGetStatsExecute executes the request
	//  @return MetricsStatsSchema
	MetricsGetStatsExecute(r ApiMetricsGetStatsRequest) (*MetricsStatsSchema, *http.Response, error)
}

type MetricsAPIService

type MetricsAPIService service

MetricsAPIService MetricsAPI service

func (*MetricsAPIService) MetricsGetDatasets

MetricsGetDatasets Get Metrics Datasets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetricsGetDatasetsRequest

func (*MetricsAPIService) MetricsGetDatasetsExecute

Execute executes the request

@return MetricsDatasetsSchema

func (*MetricsAPIService) MetricsGetStats

MetricsGetStats Get Metrics Stats

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetricsGetStatsRequest

func (*MetricsAPIService) MetricsGetStatsExecute

Execute executes the request

@return MetricsStatsSchema

type MetricsDatasetInterval

type MetricsDatasetInterval string

MetricsDatasetInterval Represents a chart aggregation interval for metrics datasets.

const (
	METRICSDATASETINTERVAL_HOURLY  MetricsDatasetInterval = "HOURLY"
	METRICSDATASETINTERVAL_DAILY   MetricsDatasetInterval = "DAILY"
	METRICSDATASETINTERVAL_WEEKLY  MetricsDatasetInterval = "WEEKLY"
	METRICSDATASETINTERVAL_MONTHLY MetricsDatasetInterval = "MONTHLY"
)

List of MetricsDatasetInterval

func NewMetricsDatasetIntervalFromValue

func NewMetricsDatasetIntervalFromValue(v string) (*MetricsDatasetInterval, error)

NewMetricsDatasetIntervalFromValue returns a pointer to a valid MetricsDatasetInterval for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MetricsDatasetInterval) IsValid

func (v MetricsDatasetInterval) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MetricsDatasetInterval) Ptr

Ptr returns reference to MetricsDatasetInterval value

func (*MetricsDatasetInterval) UnmarshalJSON

func (v *MetricsDatasetInterval) UnmarshalJSON(src []byte) error

type MetricsDatasetsSchema

type MetricsDatasetsSchema struct {
	CacheHitRatio        []CacheHitRatioDatasetPointSchema   `json:"cache_hit_ratio"`
	Requests             []RequestsDatasetPointSchema        `json:"requests"`
	StorageBytes         []StorageBytesDatasetPointSchema    `json:"storage_bytes"`
	TransferBytes        []TransferBytesDatasetPointSchema   `json:"transfer_bytes"`
	Transformations      []TransformationsDatasetPointSchema `json:"transformations"`
	Uploads              []UploadsDatasetPointSchema         `json:"uploads"`
	AdditionalProperties map[string]interface{}
}

MetricsDatasetsSchema struct for MetricsDatasetsSchema

func NewMetricsDatasetsSchema

NewMetricsDatasetsSchema instantiates a new MetricsDatasetsSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetricsDatasetsSchemaWithDefaults

func NewMetricsDatasetsSchemaWithDefaults() *MetricsDatasetsSchema

NewMetricsDatasetsSchemaWithDefaults instantiates a new MetricsDatasetsSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetricsDatasetsSchema) GetCacheHitRatio

GetCacheHitRatio returns the CacheHitRatio field value

func (*MetricsDatasetsSchema) GetCacheHitRatioOk

func (o *MetricsDatasetsSchema) GetCacheHitRatioOk() ([]CacheHitRatioDatasetPointSchema, bool)

GetCacheHitRatioOk returns a tuple with the CacheHitRatio field value and a boolean to check if the value has been set.

func (*MetricsDatasetsSchema) GetRequests

GetRequests returns the Requests field value

func (*MetricsDatasetsSchema) GetRequestsOk

func (o *MetricsDatasetsSchema) GetRequestsOk() ([]RequestsDatasetPointSchema, bool)

GetRequestsOk returns a tuple with the Requests field value and a boolean to check if the value has been set.

func (*MetricsDatasetsSchema) GetStorageBytes

GetStorageBytes returns the StorageBytes field value

func (*MetricsDatasetsSchema) GetStorageBytesOk

func (o *MetricsDatasetsSchema) GetStorageBytesOk() ([]StorageBytesDatasetPointSchema, bool)

GetStorageBytesOk returns a tuple with the StorageBytes field value and a boolean to check if the value has been set.

func (*MetricsDatasetsSchema) GetTransferBytes

GetTransferBytes returns the TransferBytes field value

func (*MetricsDatasetsSchema) GetTransferBytesOk

func (o *MetricsDatasetsSchema) GetTransferBytesOk() ([]TransferBytesDatasetPointSchema, bool)

GetTransferBytesOk returns a tuple with the TransferBytes field value and a boolean to check if the value has been set.

func (*MetricsDatasetsSchema) GetTransformations

func (o *MetricsDatasetsSchema) GetTransformations() []TransformationsDatasetPointSchema

GetTransformations returns the Transformations field value

func (*MetricsDatasetsSchema) GetTransformationsOk

func (o *MetricsDatasetsSchema) GetTransformationsOk() ([]TransformationsDatasetPointSchema, bool)

GetTransformationsOk returns a tuple with the Transformations field value and a boolean to check if the value has been set.

func (*MetricsDatasetsSchema) GetUploads

GetUploads returns the Uploads field value

func (*MetricsDatasetsSchema) GetUploadsOk

func (o *MetricsDatasetsSchema) GetUploadsOk() ([]UploadsDatasetPointSchema, bool)

GetUploadsOk returns a tuple with the Uploads field value and a boolean to check if the value has been set.

func (MetricsDatasetsSchema) MarshalJSON

func (o MetricsDatasetsSchema) MarshalJSON() ([]byte, error)

func (*MetricsDatasetsSchema) SetCacheHitRatio

func (o *MetricsDatasetsSchema) SetCacheHitRatio(v []CacheHitRatioDatasetPointSchema)

SetCacheHitRatio sets field value

func (*MetricsDatasetsSchema) SetRequests

SetRequests sets field value

func (*MetricsDatasetsSchema) SetStorageBytes

func (o *MetricsDatasetsSchema) SetStorageBytes(v []StorageBytesDatasetPointSchema)

SetStorageBytes sets field value

func (*MetricsDatasetsSchema) SetTransferBytes

func (o *MetricsDatasetsSchema) SetTransferBytes(v []TransferBytesDatasetPointSchema)

SetTransferBytes sets field value

func (*MetricsDatasetsSchema) SetTransformations

func (o *MetricsDatasetsSchema) SetTransformations(v []TransformationsDatasetPointSchema)

SetTransformations sets field value

func (*MetricsDatasetsSchema) SetUploads

SetUploads sets field value

func (MetricsDatasetsSchema) ToMap

func (o MetricsDatasetsSchema) ToMap() (map[string]interface{}, error)

func (*MetricsDatasetsSchema) UnmarshalJSON

func (o *MetricsDatasetsSchema) UnmarshalJSON(data []byte) (err error)

type MetricsStatValueSchema

type MetricsStatValueSchema struct {
	PctChange            NullableFloat32 `json:"pct_change"`
	Prev                 float32         `json:"prev"`
	Value                float32         `json:"value"`
	AdditionalProperties map[string]interface{}
}

MetricsStatValueSchema struct for MetricsStatValueSchema

func NewMetricsStatValueSchema

func NewMetricsStatValueSchema(pctChange NullableFloat32, prev float32, value float32) *MetricsStatValueSchema

NewMetricsStatValueSchema instantiates a new MetricsStatValueSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetricsStatValueSchemaWithDefaults

func NewMetricsStatValueSchemaWithDefaults() *MetricsStatValueSchema

NewMetricsStatValueSchemaWithDefaults instantiates a new MetricsStatValueSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetricsStatValueSchema) GetPctChange

func (o *MetricsStatValueSchema) GetPctChange() float32

GetPctChange returns the PctChange field value If the value is explicit nil, the zero value for float32 will be returned

func (*MetricsStatValueSchema) GetPctChangeOk

func (o *MetricsStatValueSchema) GetPctChangeOk() (*float32, bool)

GetPctChangeOk returns a tuple with the PctChange field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MetricsStatValueSchema) GetPrev

func (o *MetricsStatValueSchema) GetPrev() float32

GetPrev returns the Prev field value

func (*MetricsStatValueSchema) GetPrevOk

func (o *MetricsStatValueSchema) GetPrevOk() (*float32, bool)

GetPrevOk returns a tuple with the Prev field value and a boolean to check if the value has been set.

func (*MetricsStatValueSchema) GetValue

func (o *MetricsStatValueSchema) GetValue() float32

GetValue returns the Value field value

func (*MetricsStatValueSchema) GetValueOk

func (o *MetricsStatValueSchema) GetValueOk() (*float32, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (MetricsStatValueSchema) MarshalJSON

func (o MetricsStatValueSchema) MarshalJSON() ([]byte, error)

func (*MetricsStatValueSchema) SetPctChange

func (o *MetricsStatValueSchema) SetPctChange(v float32)

SetPctChange sets field value

func (*MetricsStatValueSchema) SetPrev

func (o *MetricsStatValueSchema) SetPrev(v float32)

SetPrev sets field value

func (*MetricsStatValueSchema) SetValue

func (o *MetricsStatValueSchema) SetValue(v float32)

SetValue sets field value

func (MetricsStatValueSchema) ToMap

func (o MetricsStatValueSchema) ToMap() (map[string]interface{}, error)

func (*MetricsStatValueSchema) UnmarshalJSON

func (o *MetricsStatValueSchema) UnmarshalJSON(data []byte) (err error)

type MetricsStatsSchema

type MetricsStatsSchema struct {
	CacheHitRatio        MetricsStatValueSchema `json:"cache_hit_ratio"`
	Requests             MetricsStatValueSchema `json:"requests"`
	StorageBytes         MetricsStatValueSchema `json:"storage_bytes"`
	TransferBytes        MetricsStatValueSchema `json:"transfer_bytes"`
	Transformations      MetricsStatValueSchema `json:"transformations"`
	Uploads              MetricsStatValueSchema `json:"uploads"`
	AdditionalProperties map[string]interface{}
}

MetricsStatsSchema struct for MetricsStatsSchema

func NewMetricsStatsSchema

func NewMetricsStatsSchema(cacheHitRatio MetricsStatValueSchema, requests MetricsStatValueSchema, storageBytes MetricsStatValueSchema, transferBytes MetricsStatValueSchema, transformations MetricsStatValueSchema, uploads MetricsStatValueSchema) *MetricsStatsSchema

NewMetricsStatsSchema instantiates a new MetricsStatsSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetricsStatsSchemaWithDefaults

func NewMetricsStatsSchemaWithDefaults() *MetricsStatsSchema

NewMetricsStatsSchemaWithDefaults instantiates a new MetricsStatsSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetricsStatsSchema) GetCacheHitRatio

func (o *MetricsStatsSchema) GetCacheHitRatio() MetricsStatValueSchema

GetCacheHitRatio returns the CacheHitRatio field value

func (*MetricsStatsSchema) GetCacheHitRatioOk

func (o *MetricsStatsSchema) GetCacheHitRatioOk() (*MetricsStatValueSchema, bool)

GetCacheHitRatioOk returns a tuple with the CacheHitRatio field value and a boolean to check if the value has been set.

func (*MetricsStatsSchema) GetRequests

func (o *MetricsStatsSchema) GetRequests() MetricsStatValueSchema

GetRequests returns the Requests field value

func (*MetricsStatsSchema) GetRequestsOk

func (o *MetricsStatsSchema) GetRequestsOk() (*MetricsStatValueSchema, bool)

GetRequestsOk returns a tuple with the Requests field value and a boolean to check if the value has been set.

func (*MetricsStatsSchema) GetStorageBytes

func (o *MetricsStatsSchema) GetStorageBytes() MetricsStatValueSchema

GetStorageBytes returns the StorageBytes field value

func (*MetricsStatsSchema) GetStorageBytesOk

func (o *MetricsStatsSchema) GetStorageBytesOk() (*MetricsStatValueSchema, bool)

GetStorageBytesOk returns a tuple with the StorageBytes field value and a boolean to check if the value has been set.

func (*MetricsStatsSchema) GetTransferBytes

func (o *MetricsStatsSchema) GetTransferBytes() MetricsStatValueSchema

GetTransferBytes returns the TransferBytes field value

func (*MetricsStatsSchema) GetTransferBytesOk

func (o *MetricsStatsSchema) GetTransferBytesOk() (*MetricsStatValueSchema, bool)

GetTransferBytesOk returns a tuple with the TransferBytes field value and a boolean to check if the value has been set.

func (*MetricsStatsSchema) GetTransformations

func (o *MetricsStatsSchema) GetTransformations() MetricsStatValueSchema

GetTransformations returns the Transformations field value

func (*MetricsStatsSchema) GetTransformationsOk

func (o *MetricsStatsSchema) GetTransformationsOk() (*MetricsStatValueSchema, bool)

GetTransformationsOk returns a tuple with the Transformations field value and a boolean to check if the value has been set.

func (*MetricsStatsSchema) GetUploads

GetUploads returns the Uploads field value

func (*MetricsStatsSchema) GetUploadsOk

func (o *MetricsStatsSchema) GetUploadsOk() (*MetricsStatValueSchema, bool)

GetUploadsOk returns a tuple with the Uploads field value and a boolean to check if the value has been set.

func (MetricsStatsSchema) MarshalJSON

func (o MetricsStatsSchema) MarshalJSON() ([]byte, error)

func (*MetricsStatsSchema) SetCacheHitRatio

func (o *MetricsStatsSchema) SetCacheHitRatio(v MetricsStatValueSchema)

SetCacheHitRatio sets field value

func (*MetricsStatsSchema) SetRequests

func (o *MetricsStatsSchema) SetRequests(v MetricsStatValueSchema)

SetRequests sets field value

func (*MetricsStatsSchema) SetStorageBytes

func (o *MetricsStatsSchema) SetStorageBytes(v MetricsStatValueSchema)

SetStorageBytes sets field value

func (*MetricsStatsSchema) SetTransferBytes

func (o *MetricsStatsSchema) SetTransferBytes(v MetricsStatValueSchema)

SetTransferBytes sets field value

func (*MetricsStatsSchema) SetTransformations

func (o *MetricsStatsSchema) SetTransformations(v MetricsStatValueSchema)

SetTransformations sets field value

func (*MetricsStatsSchema) SetUploads

func (o *MetricsStatsSchema) SetUploads(v MetricsStatValueSchema)

SetUploads sets field value

func (MetricsStatsSchema) ToMap

func (o MetricsStatsSchema) ToMap() (map[string]interface{}, error)

func (*MetricsStatsSchema) UnmarshalJSON

func (o *MetricsStatsSchema) UnmarshalJSON(data []byte) (err error)

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableBulkDeleteImagesSchema

type NullableBulkDeleteImagesSchema struct {
	// contains filtered or unexported fields
}

func (NullableBulkDeleteImagesSchema) Get

func (NullableBulkDeleteImagesSchema) IsSet

func (NullableBulkDeleteImagesSchema) MarshalJSON

func (v NullableBulkDeleteImagesSchema) MarshalJSON() ([]byte, error)

func (*NullableBulkDeleteImagesSchema) Set

func (*NullableBulkDeleteImagesSchema) UnmarshalJSON

func (v *NullableBulkDeleteImagesSchema) UnmarshalJSON(src []byte) error

func (*NullableBulkDeleteImagesSchema) Unset

func (v *NullableBulkDeleteImagesSchema) Unset()

type NullableCacheHitRatioDatasetPointSchema

type NullableCacheHitRatioDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableCacheHitRatioDatasetPointSchema) Get

func (NullableCacheHitRatioDatasetPointSchema) IsSet

func (NullableCacheHitRatioDatasetPointSchema) MarshalJSON

func (v NullableCacheHitRatioDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*NullableCacheHitRatioDatasetPointSchema) Set

func (*NullableCacheHitRatioDatasetPointSchema) UnmarshalJSON

func (v *NullableCacheHitRatioDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableCacheHitRatioDatasetPointSchema) Unset

type NullableCorsOriginCreateSchema

type NullableCorsOriginCreateSchema struct {
	// contains filtered or unexported fields
}

func (NullableCorsOriginCreateSchema) Get

func (NullableCorsOriginCreateSchema) IsSet

func (NullableCorsOriginCreateSchema) MarshalJSON

func (v NullableCorsOriginCreateSchema) MarshalJSON() ([]byte, error)

func (*NullableCorsOriginCreateSchema) Set

func (*NullableCorsOriginCreateSchema) UnmarshalJSON

func (v *NullableCorsOriginCreateSchema) UnmarshalJSON(src []byte) error

func (*NullableCorsOriginCreateSchema) Unset

func (v *NullableCorsOriginCreateSchema) Unset()

type NullableCorsOriginSchema

type NullableCorsOriginSchema struct {
	// contains filtered or unexported fields
}

func NewNullableCorsOriginSchema

func NewNullableCorsOriginSchema(val *CorsOriginSchema) *NullableCorsOriginSchema

func (NullableCorsOriginSchema) Get

func (NullableCorsOriginSchema) IsSet

func (v NullableCorsOriginSchema) IsSet() bool

func (NullableCorsOriginSchema) MarshalJSON

func (v NullableCorsOriginSchema) MarshalJSON() ([]byte, error)

func (*NullableCorsOriginSchema) Set

func (*NullableCorsOriginSchema) UnmarshalJSON

func (v *NullableCorsOriginSchema) UnmarshalJSON(src []byte) error

func (*NullableCorsOriginSchema) Unset

func (v *NullableCorsOriginSchema) Unset()

type NullableCorsOriginUpdateSchema

type NullableCorsOriginUpdateSchema struct {
	// contains filtered or unexported fields
}

func (NullableCorsOriginUpdateSchema) Get

func (NullableCorsOriginUpdateSchema) IsSet

func (NullableCorsOriginUpdateSchema) MarshalJSON

func (v NullableCorsOriginUpdateSchema) MarshalJSON() ([]byte, error)

func (*NullableCorsOriginUpdateSchema) Set

func (*NullableCorsOriginUpdateSchema) UnmarshalJSON

func (v *NullableCorsOriginUpdateSchema) UnmarshalJSON(src []byte) error

func (*NullableCorsOriginUpdateSchema) Unset

func (v *NullableCorsOriginUpdateSchema) Unset()

type NullableCustomDomainCertificateStatus

type NullableCustomDomainCertificateStatus struct {
	// contains filtered or unexported fields
}

func (NullableCustomDomainCertificateStatus) Get

func (NullableCustomDomainCertificateStatus) IsSet

func (NullableCustomDomainCertificateStatus) MarshalJSON

func (v NullableCustomDomainCertificateStatus) MarshalJSON() ([]byte, error)

func (*NullableCustomDomainCertificateStatus) Set

func (*NullableCustomDomainCertificateStatus) UnmarshalJSON

func (v *NullableCustomDomainCertificateStatus) UnmarshalJSON(src []byte) error

func (*NullableCustomDomainCertificateStatus) Unset

type NullableCustomDomainCreateSchema

type NullableCustomDomainCreateSchema struct {
	// contains filtered or unexported fields
}

func (NullableCustomDomainCreateSchema) Get

func (NullableCustomDomainCreateSchema) IsSet

func (NullableCustomDomainCreateSchema) MarshalJSON

func (v NullableCustomDomainCreateSchema) MarshalJSON() ([]byte, error)

func (*NullableCustomDomainCreateSchema) Set

func (*NullableCustomDomainCreateSchema) UnmarshalJSON

func (v *NullableCustomDomainCreateSchema) UnmarshalJSON(src []byte) error

func (*NullableCustomDomainCreateSchema) Unset

type NullableCustomDomainSchema

type NullableCustomDomainSchema struct {
	// contains filtered or unexported fields
}

func NewNullableCustomDomainSchema

func NewNullableCustomDomainSchema(val *CustomDomainSchema) *NullableCustomDomainSchema

func (NullableCustomDomainSchema) Get

func (NullableCustomDomainSchema) IsSet

func (v NullableCustomDomainSchema) IsSet() bool

func (NullableCustomDomainSchema) MarshalJSON

func (v NullableCustomDomainSchema) MarshalJSON() ([]byte, error)

func (*NullableCustomDomainSchema) Set

func (*NullableCustomDomainSchema) UnmarshalJSON

func (v *NullableCustomDomainSchema) UnmarshalJSON(src []byte) error

func (*NullableCustomDomainSchema) Unset

func (v *NullableCustomDomainSchema) Unset()

type NullableCustomDomainStatus

type NullableCustomDomainStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCustomDomainStatus

func NewNullableCustomDomainStatus(val *CustomDomainStatus) *NullableCustomDomainStatus

func (NullableCustomDomainStatus) Get

func (NullableCustomDomainStatus) IsSet

func (v NullableCustomDomainStatus) IsSet() bool

func (NullableCustomDomainStatus) MarshalJSON

func (v NullableCustomDomainStatus) MarshalJSON() ([]byte, error)

func (*NullableCustomDomainStatus) Set

func (*NullableCustomDomainStatus) UnmarshalJSON

func (v *NullableCustomDomainStatus) UnmarshalJSON(src []byte) error

func (*NullableCustomDomainStatus) Unset

func (v *NullableCustomDomainStatus) Unset()

type NullableCustomMetadataValue

type NullableCustomMetadataValue struct {
	// contains filtered or unexported fields
}

func NewNullableCustomMetadataValue

func NewNullableCustomMetadataValue(val *CustomMetadataValue) *NullableCustomMetadataValue

func (NullableCustomMetadataValue) Get

func (NullableCustomMetadataValue) IsSet

func (NullableCustomMetadataValue) MarshalJSON

func (v NullableCustomMetadataValue) MarshalJSON() ([]byte, error)

func (*NullableCustomMetadataValue) Set

func (*NullableCustomMetadataValue) UnmarshalJSON

func (v *NullableCustomMetadataValue) UnmarshalJSON(src []byte) error

func (*NullableCustomMetadataValue) Unset

func (v *NullableCustomMetadataValue) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableHTTPValidationError

type NullableHTTPValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableHTTPValidationError

func NewNullableHTTPValidationError(val *HTTPValidationError) *NullableHTTPValidationError

func (NullableHTTPValidationError) Get

func (NullableHTTPValidationError) IsSet

func (NullableHTTPValidationError) MarshalJSON

func (v NullableHTTPValidationError) MarshalJSON() ([]byte, error)

func (*NullableHTTPValidationError) Set

func (*NullableHTTPValidationError) UnmarshalJSON

func (v *NullableHTTPValidationError) UnmarshalJSON(src []byte) error

func (*NullableHTTPValidationError) Unset

func (v *NullableHTTPValidationError) Unset()

type NullableImageDownloadJobCreateSchema

type NullableImageDownloadJobCreateSchema struct {
	// contains filtered or unexported fields
}

func (NullableImageDownloadJobCreateSchema) Get

func (NullableImageDownloadJobCreateSchema) IsSet

func (NullableImageDownloadJobCreateSchema) MarshalJSON

func (v NullableImageDownloadJobCreateSchema) MarshalJSON() ([]byte, error)

func (*NullableImageDownloadJobCreateSchema) Set

func (*NullableImageDownloadJobCreateSchema) UnmarshalJSON

func (v *NullableImageDownloadJobCreateSchema) UnmarshalJSON(src []byte) error

func (*NullableImageDownloadJobCreateSchema) Unset

type NullableImageDownloadJobSchema

type NullableImageDownloadJobSchema struct {
	// contains filtered or unexported fields
}

func (NullableImageDownloadJobSchema) Get

func (NullableImageDownloadJobSchema) IsSet

func (NullableImageDownloadJobSchema) MarshalJSON

func (v NullableImageDownloadJobSchema) MarshalJSON() ([]byte, error)

func (*NullableImageDownloadJobSchema) Set

func (*NullableImageDownloadJobSchema) UnmarshalJSON

func (v *NullableImageDownloadJobSchema) UnmarshalJSON(src []byte) error

func (*NullableImageDownloadJobSchema) Unset

func (v *NullableImageDownloadJobSchema) Unset()

type NullableImageDownloadStatus

type NullableImageDownloadStatus struct {
	// contains filtered or unexported fields
}

func NewNullableImageDownloadStatus

func NewNullableImageDownloadStatus(val *ImageDownloadStatus) *NullableImageDownloadStatus

func (NullableImageDownloadStatus) Get

func (NullableImageDownloadStatus) IsSet

func (NullableImageDownloadStatus) MarshalJSON

func (v NullableImageDownloadStatus) MarshalJSON() ([]byte, error)

func (*NullableImageDownloadStatus) Set

func (*NullableImageDownloadStatus) UnmarshalJSON

func (v *NullableImageDownloadStatus) UnmarshalJSON(src []byte) error

func (*NullableImageDownloadStatus) Unset

func (v *NullableImageDownloadStatus) Unset()

type NullableImageSchema

type NullableImageSchema struct {
	// contains filtered or unexported fields
}

func NewNullableImageSchema

func NewNullableImageSchema(val *ImageSchema) *NullableImageSchema

func (NullableImageSchema) Get

func (NullableImageSchema) IsSet

func (v NullableImageSchema) IsSet() bool

func (NullableImageSchema) MarshalJSON

func (v NullableImageSchema) MarshalJSON() ([]byte, error)

func (*NullableImageSchema) Set

func (v *NullableImageSchema) Set(val *ImageSchema)

func (*NullableImageSchema) UnmarshalJSON

func (v *NullableImageSchema) UnmarshalJSON(src []byte) error

func (*NullableImageSchema) Unset

func (v *NullableImageSchema) Unset()

type NullableImageStatus

type NullableImageStatus struct {
	// contains filtered or unexported fields
}

func NewNullableImageStatus

func NewNullableImageStatus(val *ImageStatus) *NullableImageStatus

func (NullableImageStatus) Get

func (NullableImageStatus) IsSet

func (v NullableImageStatus) IsSet() bool

func (NullableImageStatus) MarshalJSON

func (v NullableImageStatus) MarshalJSON() ([]byte, error)

func (*NullableImageStatus) Set

func (v *NullableImageStatus) Set(val *ImageStatus)

func (*NullableImageStatus) UnmarshalJSON

func (v *NullableImageStatus) UnmarshalJSON(src []byte) error

func (*NullableImageStatus) Unset

func (v *NullableImageStatus) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableLocationInner

type NullableLocationInner struct {
	// contains filtered or unexported fields
}

func NewNullableLocationInner

func NewNullableLocationInner(val *LocationInner) *NullableLocationInner

func (NullableLocationInner) Get

func (NullableLocationInner) IsSet

func (v NullableLocationInner) IsSet() bool

func (NullableLocationInner) MarshalJSON

func (v NullableLocationInner) MarshalJSON() ([]byte, error)

func (*NullableLocationInner) Set

func (v *NullableLocationInner) Set(val *LocationInner)

func (*NullableLocationInner) UnmarshalJSON

func (v *NullableLocationInner) UnmarshalJSON(src []byte) error

func (*NullableLocationInner) Unset

func (v *NullableLocationInner) Unset()

type NullableMetricsDatasetInterval

type NullableMetricsDatasetInterval struct {
	// contains filtered or unexported fields
}

func (NullableMetricsDatasetInterval) Get

func (NullableMetricsDatasetInterval) IsSet

func (NullableMetricsDatasetInterval) MarshalJSON

func (v NullableMetricsDatasetInterval) MarshalJSON() ([]byte, error)

func (*NullableMetricsDatasetInterval) Set

func (*NullableMetricsDatasetInterval) UnmarshalJSON

func (v *NullableMetricsDatasetInterval) UnmarshalJSON(src []byte) error

func (*NullableMetricsDatasetInterval) Unset

func (v *NullableMetricsDatasetInterval) Unset()

type NullableMetricsDatasetsSchema

type NullableMetricsDatasetsSchema struct {
	// contains filtered or unexported fields
}

func (NullableMetricsDatasetsSchema) Get

func (NullableMetricsDatasetsSchema) IsSet

func (NullableMetricsDatasetsSchema) MarshalJSON

func (v NullableMetricsDatasetsSchema) MarshalJSON() ([]byte, error)

func (*NullableMetricsDatasetsSchema) Set

func (*NullableMetricsDatasetsSchema) UnmarshalJSON

func (v *NullableMetricsDatasetsSchema) UnmarshalJSON(src []byte) error

func (*NullableMetricsDatasetsSchema) Unset

func (v *NullableMetricsDatasetsSchema) Unset()

type NullableMetricsStatValueSchema

type NullableMetricsStatValueSchema struct {
	// contains filtered or unexported fields
}

func (NullableMetricsStatValueSchema) Get

func (NullableMetricsStatValueSchema) IsSet

func (NullableMetricsStatValueSchema) MarshalJSON

func (v NullableMetricsStatValueSchema) MarshalJSON() ([]byte, error)

func (*NullableMetricsStatValueSchema) Set

func (*NullableMetricsStatValueSchema) UnmarshalJSON

func (v *NullableMetricsStatValueSchema) UnmarshalJSON(src []byte) error

func (*NullableMetricsStatValueSchema) Unset

func (v *NullableMetricsStatValueSchema) Unset()

type NullableMetricsStatsSchema

type NullableMetricsStatsSchema struct {
	// contains filtered or unexported fields
}

func NewNullableMetricsStatsSchema

func NewNullableMetricsStatsSchema(val *MetricsStatsSchema) *NullableMetricsStatsSchema

func (NullableMetricsStatsSchema) Get

func (NullableMetricsStatsSchema) IsSet

func (v NullableMetricsStatsSchema) IsSet() bool

func (NullableMetricsStatsSchema) MarshalJSON

func (v NullableMetricsStatsSchema) MarshalJSON() ([]byte, error)

func (*NullableMetricsStatsSchema) Set

func (*NullableMetricsStatsSchema) UnmarshalJSON

func (v *NullableMetricsStatsSchema) UnmarshalJSON(src []byte) error

func (*NullableMetricsStatsSchema) Unset

func (v *NullableMetricsStatsSchema) Unset()

type NullableRequestsDatasetPointSchema

type NullableRequestsDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableRequestsDatasetPointSchema) Get

func (NullableRequestsDatasetPointSchema) IsSet

func (NullableRequestsDatasetPointSchema) MarshalJSON

func (v NullableRequestsDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*NullableRequestsDatasetPointSchema) Set

func (*NullableRequestsDatasetPointSchema) UnmarshalJSON

func (v *NullableRequestsDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableRequestsDatasetPointSchema) Unset

type NullableStandardUploadCreateSchema

type NullableStandardUploadCreateSchema struct {
	// contains filtered or unexported fields
}

func (NullableStandardUploadCreateSchema) Get

func (NullableStandardUploadCreateSchema) IsSet

func (NullableStandardUploadCreateSchema) MarshalJSON

func (v NullableStandardUploadCreateSchema) MarshalJSON() ([]byte, error)

func (*NullableStandardUploadCreateSchema) Set

func (*NullableStandardUploadCreateSchema) UnmarshalJSON

func (v *NullableStandardUploadCreateSchema) UnmarshalJSON(src []byte) error

func (*NullableStandardUploadCreateSchema) Unset

type NullableStandardUploadResponseSchema

type NullableStandardUploadResponseSchema struct {
	// contains filtered or unexported fields
}

func (NullableStandardUploadResponseSchema) Get

func (NullableStandardUploadResponseSchema) IsSet

func (NullableStandardUploadResponseSchema) MarshalJSON

func (v NullableStandardUploadResponseSchema) MarshalJSON() ([]byte, error)

func (*NullableStandardUploadResponseSchema) Set

func (*NullableStandardUploadResponseSchema) UnmarshalJSON

func (v *NullableStandardUploadResponseSchema) UnmarshalJSON(src []byte) error

func (*NullableStandardUploadResponseSchema) Unset

type NullableStorageBytesDatasetPointSchema

type NullableStorageBytesDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableStorageBytesDatasetPointSchema) Get

func (NullableStorageBytesDatasetPointSchema) IsSet

func (NullableStorageBytesDatasetPointSchema) MarshalJSON

func (v NullableStorageBytesDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*NullableStorageBytesDatasetPointSchema) Set

func (*NullableStorageBytesDatasetPointSchema) UnmarshalJSON

func (v *NullableStorageBytesDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableStorageBytesDatasetPointSchema) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSupportedMimeType

type NullableSupportedMimeType struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedMimeType

func NewNullableSupportedMimeType(val *SupportedMimeType) *NullableSupportedMimeType

func (NullableSupportedMimeType) Get

func (NullableSupportedMimeType) IsSet

func (v NullableSupportedMimeType) IsSet() bool

func (NullableSupportedMimeType) MarshalJSON

func (v NullableSupportedMimeType) MarshalJSON() ([]byte, error)

func (*NullableSupportedMimeType) Set

func (*NullableSupportedMimeType) UnmarshalJSON

func (v *NullableSupportedMimeType) UnmarshalJSON(src []byte) error

func (*NullableSupportedMimeType) Unset

func (v *NullableSupportedMimeType) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTransferBytesDatasetPointSchema

type NullableTransferBytesDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableTransferBytesDatasetPointSchema) Get

func (NullableTransferBytesDatasetPointSchema) IsSet

func (NullableTransferBytesDatasetPointSchema) MarshalJSON

func (v NullableTransferBytesDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*NullableTransferBytesDatasetPointSchema) Set

func (*NullableTransferBytesDatasetPointSchema) UnmarshalJSON

func (v *NullableTransferBytesDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableTransferBytesDatasetPointSchema) Unset

type NullableTransformationsDatasetPointSchema

type NullableTransformationsDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableTransformationsDatasetPointSchema) Get

func (NullableTransformationsDatasetPointSchema) IsSet

func (NullableTransformationsDatasetPointSchema) MarshalJSON

func (*NullableTransformationsDatasetPointSchema) Set

func (*NullableTransformationsDatasetPointSchema) UnmarshalJSON

func (v *NullableTransformationsDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableTransformationsDatasetPointSchema) Unset

type NullableUploadTokenCreateResponseSchema

type NullableUploadTokenCreateResponseSchema struct {
	// contains filtered or unexported fields
}

func (NullableUploadTokenCreateResponseSchema) Get

func (NullableUploadTokenCreateResponseSchema) IsSet

func (NullableUploadTokenCreateResponseSchema) MarshalJSON

func (v NullableUploadTokenCreateResponseSchema) MarshalJSON() ([]byte, error)

func (*NullableUploadTokenCreateResponseSchema) Set

func (*NullableUploadTokenCreateResponseSchema) UnmarshalJSON

func (v *NullableUploadTokenCreateResponseSchema) UnmarshalJSON(src []byte) error

func (*NullableUploadTokenCreateResponseSchema) Unset

type NullableUploadsDatasetPointSchema

type NullableUploadsDatasetPointSchema struct {
	// contains filtered or unexported fields
}

func (NullableUploadsDatasetPointSchema) Get

func (NullableUploadsDatasetPointSchema) IsSet

func (NullableUploadsDatasetPointSchema) MarshalJSON

func (v NullableUploadsDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*NullableUploadsDatasetPointSchema) Set

func (*NullableUploadsDatasetPointSchema) UnmarshalJSON

func (v *NullableUploadsDatasetPointSchema) UnmarshalJSON(src []byte) error

func (*NullableUploadsDatasetPointSchema) Unset

type NullableValidationError

type NullableValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableValidationError

func NewNullableValidationError(val *ValidationError) *NullableValidationError

func (NullableValidationError) Get

func (NullableValidationError) IsSet

func (v NullableValidationError) IsSet() bool

func (NullableValidationError) MarshalJSON

func (v NullableValidationError) MarshalJSON() ([]byte, error)

func (*NullableValidationError) Set

func (*NullableValidationError) UnmarshalJSON

func (v *NullableValidationError) UnmarshalJSON(src []byte) error

func (*NullableValidationError) Unset

func (v *NullableValidationError) Unset()

type RequestsDatasetPointSchema

type RequestsDatasetPointSchema struct {
	Requests             int32     `json:"requests"`
	Timestamp            time.Time `json:"timestamp"`
	AdditionalProperties map[string]interface{}
}

RequestsDatasetPointSchema struct for RequestsDatasetPointSchema

func NewRequestsDatasetPointSchema

func NewRequestsDatasetPointSchema(requests int32, timestamp time.Time) *RequestsDatasetPointSchema

NewRequestsDatasetPointSchema instantiates a new RequestsDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRequestsDatasetPointSchemaWithDefaults

func NewRequestsDatasetPointSchemaWithDefaults() *RequestsDatasetPointSchema

NewRequestsDatasetPointSchemaWithDefaults instantiates a new RequestsDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RequestsDatasetPointSchema) GetRequests

func (o *RequestsDatasetPointSchema) GetRequests() int32

GetRequests returns the Requests field value

func (*RequestsDatasetPointSchema) GetRequestsOk

func (o *RequestsDatasetPointSchema) GetRequestsOk() (*int32, bool)

GetRequestsOk returns a tuple with the Requests field value and a boolean to check if the value has been set.

func (*RequestsDatasetPointSchema) GetTimestamp

func (o *RequestsDatasetPointSchema) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*RequestsDatasetPointSchema) GetTimestampOk

func (o *RequestsDatasetPointSchema) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (RequestsDatasetPointSchema) MarshalJSON

func (o RequestsDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*RequestsDatasetPointSchema) SetRequests

func (o *RequestsDatasetPointSchema) SetRequests(v int32)

SetRequests sets field value

func (*RequestsDatasetPointSchema) SetTimestamp

func (o *RequestsDatasetPointSchema) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (RequestsDatasetPointSchema) ToMap

func (o RequestsDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*RequestsDatasetPointSchema) UnmarshalJSON

func (o *RequestsDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StandardUploadCreateSchema

type StandardUploadCreateSchema struct {
	ContentLength        NullableInt32                  `json:"content_length,omitempty"`
	CustomMetadata       map[string]CustomMetadataValue `json:"custom_metadata,omitempty"`
	FileName             string                         `json:"file_name"`
	HashSha256           NullableString                 `json:"hash_sha256,omitempty"`
	IdempotencyKey       NullableString                 `json:"idempotency_key,omitempty"`
	MimeType             *SupportedMimeType             `json:"mime_type,omitempty"`
	Purpose              NullableString                 `json:"purpose,omitempty"`
	AdditionalProperties map[string]interface{}
}

StandardUploadCreateSchema struct for StandardUploadCreateSchema

func NewStandardUploadCreateSchema

func NewStandardUploadCreateSchema(fileName string) *StandardUploadCreateSchema

NewStandardUploadCreateSchema instantiates a new StandardUploadCreateSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStandardUploadCreateSchemaWithDefaults

func NewStandardUploadCreateSchemaWithDefaults() *StandardUploadCreateSchema

NewStandardUploadCreateSchemaWithDefaults instantiates a new StandardUploadCreateSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StandardUploadCreateSchema) GetContentLength

func (o *StandardUploadCreateSchema) GetContentLength() int32

GetContentLength returns the ContentLength field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StandardUploadCreateSchema) GetContentLengthOk

func (o *StandardUploadCreateSchema) GetContentLengthOk() (*int32, bool)

GetContentLengthOk returns a tuple with the ContentLength field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StandardUploadCreateSchema) GetCustomMetadata

func (o *StandardUploadCreateSchema) GetCustomMetadata() map[string]CustomMetadataValue

GetCustomMetadata returns the CustomMetadata field value if set, zero value otherwise.

func (*StandardUploadCreateSchema) GetCustomMetadataOk

func (o *StandardUploadCreateSchema) GetCustomMetadataOk() (map[string]CustomMetadataValue, bool)

GetCustomMetadataOk returns a tuple with the CustomMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StandardUploadCreateSchema) GetFileName

func (o *StandardUploadCreateSchema) GetFileName() string

GetFileName returns the FileName field value

func (*StandardUploadCreateSchema) GetFileNameOk

func (o *StandardUploadCreateSchema) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value and a boolean to check if the value has been set.

func (*StandardUploadCreateSchema) GetHashSha256

func (o *StandardUploadCreateSchema) GetHashSha256() string

GetHashSha256 returns the HashSha256 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StandardUploadCreateSchema) GetHashSha256Ok

func (o *StandardUploadCreateSchema) GetHashSha256Ok() (*string, bool)

GetHashSha256Ok returns a tuple with the HashSha256 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StandardUploadCreateSchema) GetIdempotencyKey

func (o *StandardUploadCreateSchema) GetIdempotencyKey() string

GetIdempotencyKey returns the IdempotencyKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StandardUploadCreateSchema) GetIdempotencyKeyOk

func (o *StandardUploadCreateSchema) GetIdempotencyKeyOk() (*string, bool)

GetIdempotencyKeyOk returns a tuple with the IdempotencyKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StandardUploadCreateSchema) GetMimeType

GetMimeType returns the MimeType field value if set, zero value otherwise.

func (*StandardUploadCreateSchema) GetMimeTypeOk

func (o *StandardUploadCreateSchema) GetMimeTypeOk() (*SupportedMimeType, bool)

GetMimeTypeOk returns a tuple with the MimeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StandardUploadCreateSchema) GetPurpose

func (o *StandardUploadCreateSchema) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StandardUploadCreateSchema) GetPurposeOk

func (o *StandardUploadCreateSchema) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StandardUploadCreateSchema) HasContentLength

func (o *StandardUploadCreateSchema) HasContentLength() bool

HasContentLength returns a boolean if a field has been set.

func (*StandardUploadCreateSchema) HasCustomMetadata

func (o *StandardUploadCreateSchema) HasCustomMetadata() bool

HasCustomMetadata returns a boolean if a field has been set.

func (*StandardUploadCreateSchema) HasHashSha256

func (o *StandardUploadCreateSchema) HasHashSha256() bool

HasHashSha256 returns a boolean if a field has been set.

func (*StandardUploadCreateSchema) HasIdempotencyKey

func (o *StandardUploadCreateSchema) HasIdempotencyKey() bool

HasIdempotencyKey returns a boolean if a field has been set.

func (*StandardUploadCreateSchema) HasMimeType

func (o *StandardUploadCreateSchema) HasMimeType() bool

HasMimeType returns a boolean if a field has been set.

func (*StandardUploadCreateSchema) HasPurpose

func (o *StandardUploadCreateSchema) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (StandardUploadCreateSchema) MarshalJSON

func (o StandardUploadCreateSchema) MarshalJSON() ([]byte, error)

func (*StandardUploadCreateSchema) SetContentLength

func (o *StandardUploadCreateSchema) SetContentLength(v int32)

SetContentLength gets a reference to the given NullableInt32 and assigns it to the ContentLength field.

func (*StandardUploadCreateSchema) SetContentLengthNil

func (o *StandardUploadCreateSchema) SetContentLengthNil()

SetContentLengthNil sets the value for ContentLength to be an explicit nil

func (*StandardUploadCreateSchema) SetCustomMetadata

func (o *StandardUploadCreateSchema) SetCustomMetadata(v map[string]CustomMetadataValue)

SetCustomMetadata gets a reference to the given map[string]CustomMetadataValue and assigns it to the CustomMetadata field.

func (*StandardUploadCreateSchema) SetFileName

func (o *StandardUploadCreateSchema) SetFileName(v string)

SetFileName sets field value

func (*StandardUploadCreateSchema) SetHashSha256

func (o *StandardUploadCreateSchema) SetHashSha256(v string)

SetHashSha256 gets a reference to the given NullableString and assigns it to the HashSha256 field.

func (*StandardUploadCreateSchema) SetHashSha256Nil

func (o *StandardUploadCreateSchema) SetHashSha256Nil()

SetHashSha256Nil sets the value for HashSha256 to be an explicit nil

func (*StandardUploadCreateSchema) SetIdempotencyKey

func (o *StandardUploadCreateSchema) SetIdempotencyKey(v string)

SetIdempotencyKey gets a reference to the given NullableString and assigns it to the IdempotencyKey field.

func (*StandardUploadCreateSchema) SetIdempotencyKeyNil

func (o *StandardUploadCreateSchema) SetIdempotencyKeyNil()

SetIdempotencyKeyNil sets the value for IdempotencyKey to be an explicit nil

func (*StandardUploadCreateSchema) SetMimeType

SetMimeType gets a reference to the given SupportedMimeType and assigns it to the MimeType field.

func (*StandardUploadCreateSchema) SetPurpose

func (o *StandardUploadCreateSchema) SetPurpose(v string)

SetPurpose gets a reference to the given NullableString and assigns it to the Purpose field.

func (*StandardUploadCreateSchema) SetPurposeNil

func (o *StandardUploadCreateSchema) SetPurposeNil()

SetPurposeNil sets the value for Purpose to be an explicit nil

func (StandardUploadCreateSchema) ToMap

func (o StandardUploadCreateSchema) ToMap() (map[string]interface{}, error)

func (*StandardUploadCreateSchema) UnmarshalJSON

func (o *StandardUploadCreateSchema) UnmarshalJSON(data []byte) (err error)

func (*StandardUploadCreateSchema) UnsetContentLength

func (o *StandardUploadCreateSchema) UnsetContentLength()

UnsetContentLength ensures that no value is present for ContentLength, not even an explicit nil

func (*StandardUploadCreateSchema) UnsetHashSha256

func (o *StandardUploadCreateSchema) UnsetHashSha256()

UnsetHashSha256 ensures that no value is present for HashSha256, not even an explicit nil

func (*StandardUploadCreateSchema) UnsetIdempotencyKey

func (o *StandardUploadCreateSchema) UnsetIdempotencyKey()

UnsetIdempotencyKey ensures that no value is present for IdempotencyKey, not even an explicit nil

func (*StandardUploadCreateSchema) UnsetPurpose

func (o *StandardUploadCreateSchema) UnsetPurpose()

UnsetPurpose ensures that no value is present for Purpose, not even an explicit nil

type StandardUploadResponseSchema

type StandardUploadResponseSchema struct {
	Image                ImageSchema `json:"image"`
	UploadUrl            string      `json:"upload_url"`
	AdditionalProperties map[string]interface{}
}

StandardUploadResponseSchema struct for StandardUploadResponseSchema

func NewStandardUploadResponseSchema

func NewStandardUploadResponseSchema(image ImageSchema, uploadUrl string) *StandardUploadResponseSchema

NewStandardUploadResponseSchema instantiates a new StandardUploadResponseSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStandardUploadResponseSchemaWithDefaults

func NewStandardUploadResponseSchemaWithDefaults() *StandardUploadResponseSchema

NewStandardUploadResponseSchemaWithDefaults instantiates a new StandardUploadResponseSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StandardUploadResponseSchema) GetImage

GetImage returns the Image field value

func (*StandardUploadResponseSchema) GetImageOk

func (o *StandardUploadResponseSchema) GetImageOk() (*ImageSchema, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*StandardUploadResponseSchema) GetUploadUrl

func (o *StandardUploadResponseSchema) GetUploadUrl() string

GetUploadUrl returns the UploadUrl field value

func (*StandardUploadResponseSchema) GetUploadUrlOk

func (o *StandardUploadResponseSchema) GetUploadUrlOk() (*string, bool)

GetUploadUrlOk returns a tuple with the UploadUrl field value and a boolean to check if the value has been set.

func (StandardUploadResponseSchema) MarshalJSON

func (o StandardUploadResponseSchema) MarshalJSON() ([]byte, error)

func (*StandardUploadResponseSchema) SetImage

SetImage sets field value

func (*StandardUploadResponseSchema) SetUploadUrl

func (o *StandardUploadResponseSchema) SetUploadUrl(v string)

SetUploadUrl sets field value

func (StandardUploadResponseSchema) ToMap

func (o StandardUploadResponseSchema) ToMap() (map[string]interface{}, error)

func (*StandardUploadResponseSchema) UnmarshalJSON

func (o *StandardUploadResponseSchema) UnmarshalJSON(data []byte) (err error)

type StorageBytesDatasetPointSchema

type StorageBytesDatasetPointSchema struct {
	StorageBytesAdded    int32     `json:"storage_bytes_added"`
	StorageBytesCurrent  int32     `json:"storage_bytes_current"`
	Timestamp            time.Time `json:"timestamp"`
	AdditionalProperties map[string]interface{}
}

StorageBytesDatasetPointSchema struct for StorageBytesDatasetPointSchema

func NewStorageBytesDatasetPointSchema

func NewStorageBytesDatasetPointSchema(storageBytesAdded int32, storageBytesCurrent int32, timestamp time.Time) *StorageBytesDatasetPointSchema

NewStorageBytesDatasetPointSchema instantiates a new StorageBytesDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStorageBytesDatasetPointSchemaWithDefaults

func NewStorageBytesDatasetPointSchemaWithDefaults() *StorageBytesDatasetPointSchema

NewStorageBytesDatasetPointSchemaWithDefaults instantiates a new StorageBytesDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StorageBytesDatasetPointSchema) GetStorageBytesAdded

func (o *StorageBytesDatasetPointSchema) GetStorageBytesAdded() int32

GetStorageBytesAdded returns the StorageBytesAdded field value

func (*StorageBytesDatasetPointSchema) GetStorageBytesAddedOk

func (o *StorageBytesDatasetPointSchema) GetStorageBytesAddedOk() (*int32, bool)

GetStorageBytesAddedOk returns a tuple with the StorageBytesAdded field value and a boolean to check if the value has been set.

func (*StorageBytesDatasetPointSchema) GetStorageBytesCurrent

func (o *StorageBytesDatasetPointSchema) GetStorageBytesCurrent() int32

GetStorageBytesCurrent returns the StorageBytesCurrent field value

func (*StorageBytesDatasetPointSchema) GetStorageBytesCurrentOk

func (o *StorageBytesDatasetPointSchema) GetStorageBytesCurrentOk() (*int32, bool)

GetStorageBytesCurrentOk returns a tuple with the StorageBytesCurrent field value and a boolean to check if the value has been set.

func (*StorageBytesDatasetPointSchema) GetTimestamp

func (o *StorageBytesDatasetPointSchema) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*StorageBytesDatasetPointSchema) GetTimestampOk

func (o *StorageBytesDatasetPointSchema) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (StorageBytesDatasetPointSchema) MarshalJSON

func (o StorageBytesDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*StorageBytesDatasetPointSchema) SetStorageBytesAdded

func (o *StorageBytesDatasetPointSchema) SetStorageBytesAdded(v int32)

SetStorageBytesAdded sets field value

func (*StorageBytesDatasetPointSchema) SetStorageBytesCurrent

func (o *StorageBytesDatasetPointSchema) SetStorageBytesCurrent(v int32)

SetStorageBytesCurrent sets field value

func (*StorageBytesDatasetPointSchema) SetTimestamp

func (o *StorageBytesDatasetPointSchema) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (StorageBytesDatasetPointSchema) ToMap

func (o StorageBytesDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*StorageBytesDatasetPointSchema) UnmarshalJSON

func (o *StorageBytesDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type SupportedMimeType

type SupportedMimeType string

SupportedMimeType Represents supported image MIME types.

const (
	SUPPORTEDMIMETYPE_IMAGE_JPEG               SupportedMimeType = "image/jpeg"
	SUPPORTEDMIMETYPE_IMAGE_JXL                SupportedMimeType = "image/jxl"
	SUPPORTEDMIMETYPE_IMAGE_PNG                SupportedMimeType = "image/png"
	SUPPORTEDMIMETYPE_IMAGE_WEBP               SupportedMimeType = "image/webp"
	SUPPORTEDMIMETYPE_IMAGE_AVIF               SupportedMimeType = "image/avif"
	SUPPORTEDMIMETYPE_IMAGE_GIF                SupportedMimeType = "image/gif"
	SUPPORTEDMIMETYPE_IMAGE_VND_MICROSOFT_ICON SupportedMimeType = "image/vnd.microsoft.icon"
	SUPPORTEDMIMETYPE_IMAGE_HEIC               SupportedMimeType = "image/heic"
	SUPPORTEDMIMETYPE_IMAGE_BMP                SupportedMimeType = "image/bmp"
	SUPPORTEDMIMETYPE_IMAGE_TIFF               SupportedMimeType = "image/tiff"
)

List of SupportedMimeType

func NewSupportedMimeTypeFromValue

func NewSupportedMimeTypeFromValue(v string) (*SupportedMimeType, error)

NewSupportedMimeTypeFromValue returns a pointer to a valid SupportedMimeType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SupportedMimeType) IsValid

func (v SupportedMimeType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SupportedMimeType) Ptr

Ptr returns reference to SupportedMimeType value

func (*SupportedMimeType) UnmarshalJSON

func (v *SupportedMimeType) UnmarshalJSON(src []byte) error

type TransferBytesDatasetPointSchema

type TransferBytesDatasetPointSchema struct {
	Timestamp            time.Time `json:"timestamp"`
	TransferBytes        int32     `json:"transfer_bytes"`
	AdditionalProperties map[string]interface{}
}

TransferBytesDatasetPointSchema struct for TransferBytesDatasetPointSchema

func NewTransferBytesDatasetPointSchema

func NewTransferBytesDatasetPointSchema(timestamp time.Time, transferBytes int32) *TransferBytesDatasetPointSchema

NewTransferBytesDatasetPointSchema instantiates a new TransferBytesDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferBytesDatasetPointSchemaWithDefaults

func NewTransferBytesDatasetPointSchemaWithDefaults() *TransferBytesDatasetPointSchema

NewTransferBytesDatasetPointSchemaWithDefaults instantiates a new TransferBytesDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferBytesDatasetPointSchema) GetTimestamp

func (o *TransferBytesDatasetPointSchema) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*TransferBytesDatasetPointSchema) GetTimestampOk

func (o *TransferBytesDatasetPointSchema) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*TransferBytesDatasetPointSchema) GetTransferBytes

func (o *TransferBytesDatasetPointSchema) GetTransferBytes() int32

GetTransferBytes returns the TransferBytes field value

func (*TransferBytesDatasetPointSchema) GetTransferBytesOk

func (o *TransferBytesDatasetPointSchema) GetTransferBytesOk() (*int32, bool)

GetTransferBytesOk returns a tuple with the TransferBytes field value and a boolean to check if the value has been set.

func (TransferBytesDatasetPointSchema) MarshalJSON

func (o TransferBytesDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*TransferBytesDatasetPointSchema) SetTimestamp

func (o *TransferBytesDatasetPointSchema) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*TransferBytesDatasetPointSchema) SetTransferBytes

func (o *TransferBytesDatasetPointSchema) SetTransferBytes(v int32)

SetTransferBytes sets field value

func (TransferBytesDatasetPointSchema) ToMap

func (o TransferBytesDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*TransferBytesDatasetPointSchema) UnmarshalJSON

func (o *TransferBytesDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type TransformationsDatasetPointSchema

type TransformationsDatasetPointSchema struct {
	Timestamp            time.Time `json:"timestamp"`
	Transformations      int32     `json:"transformations"`
	AdditionalProperties map[string]interface{}
}

TransformationsDatasetPointSchema struct for TransformationsDatasetPointSchema

func NewTransformationsDatasetPointSchema

func NewTransformationsDatasetPointSchema(timestamp time.Time, transformations int32) *TransformationsDatasetPointSchema

NewTransformationsDatasetPointSchema instantiates a new TransformationsDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransformationsDatasetPointSchemaWithDefaults

func NewTransformationsDatasetPointSchemaWithDefaults() *TransformationsDatasetPointSchema

NewTransformationsDatasetPointSchemaWithDefaults instantiates a new TransformationsDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransformationsDatasetPointSchema) GetTimestamp

func (o *TransformationsDatasetPointSchema) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*TransformationsDatasetPointSchema) GetTimestampOk

func (o *TransformationsDatasetPointSchema) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*TransformationsDatasetPointSchema) GetTransformations

func (o *TransformationsDatasetPointSchema) GetTransformations() int32

GetTransformations returns the Transformations field value

func (*TransformationsDatasetPointSchema) GetTransformationsOk

func (o *TransformationsDatasetPointSchema) GetTransformationsOk() (*int32, bool)

GetTransformationsOk returns a tuple with the Transformations field value and a boolean to check if the value has been set.

func (TransformationsDatasetPointSchema) MarshalJSON

func (o TransformationsDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*TransformationsDatasetPointSchema) SetTimestamp

func (o *TransformationsDatasetPointSchema) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*TransformationsDatasetPointSchema) SetTransformations

func (o *TransformationsDatasetPointSchema) SetTransformations(v int32)

SetTransformations sets field value

func (TransformationsDatasetPointSchema) ToMap

func (o TransformationsDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*TransformationsDatasetPointSchema) UnmarshalJSON

func (o *TransformationsDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type UploadTokenCreateResponseSchema

type UploadTokenCreateResponseSchema struct {
	CreatedAt            time.Time    `json:"created_at"`
	EnvironmentId        string       `json:"environment_id"`
	ExpiresAt            time.Time    `json:"expires_at"`
	Id                   string       `json:"id"`
	Token                string       `json:"token"`
	UpdatedAt            time.Time    `json:"updated_at"`
	UsedAt               NullableTime `json:"used_at"`
	AdditionalProperties map[string]interface{}
}

UploadTokenCreateResponseSchema struct for UploadTokenCreateResponseSchema

func NewUploadTokenCreateResponseSchema

func NewUploadTokenCreateResponseSchema(createdAt time.Time, environmentId string, expiresAt time.Time, id string, token string, updatedAt time.Time, usedAt NullableTime) *UploadTokenCreateResponseSchema

NewUploadTokenCreateResponseSchema instantiates a new UploadTokenCreateResponseSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadTokenCreateResponseSchemaWithDefaults

func NewUploadTokenCreateResponseSchemaWithDefaults() *UploadTokenCreateResponseSchema

NewUploadTokenCreateResponseSchemaWithDefaults instantiates a new UploadTokenCreateResponseSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadTokenCreateResponseSchema) GetCreatedAt

func (o *UploadTokenCreateResponseSchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*UploadTokenCreateResponseSchema) GetCreatedAtOk

func (o *UploadTokenCreateResponseSchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetEnvironmentId

func (o *UploadTokenCreateResponseSchema) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field value

func (*UploadTokenCreateResponseSchema) GetEnvironmentIdOk

func (o *UploadTokenCreateResponseSchema) GetEnvironmentIdOk() (*string, bool)

GetEnvironmentIdOk returns a tuple with the EnvironmentId field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetExpiresAt

func (o *UploadTokenCreateResponseSchema) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value

func (*UploadTokenCreateResponseSchema) GetExpiresAtOk

func (o *UploadTokenCreateResponseSchema) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetId

GetId returns the Id field value

func (*UploadTokenCreateResponseSchema) GetIdOk

func (o *UploadTokenCreateResponseSchema) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetToken

GetToken returns the Token field value

func (*UploadTokenCreateResponseSchema) GetTokenOk

func (o *UploadTokenCreateResponseSchema) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetUpdatedAt

func (o *UploadTokenCreateResponseSchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*UploadTokenCreateResponseSchema) GetUpdatedAtOk

func (o *UploadTokenCreateResponseSchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*UploadTokenCreateResponseSchema) GetUsedAt

func (o *UploadTokenCreateResponseSchema) GetUsedAt() time.Time

GetUsedAt returns the UsedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*UploadTokenCreateResponseSchema) GetUsedAtOk

func (o *UploadTokenCreateResponseSchema) GetUsedAtOk() (*time.Time, bool)

GetUsedAtOk returns a tuple with the UsedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (UploadTokenCreateResponseSchema) MarshalJSON

func (o UploadTokenCreateResponseSchema) MarshalJSON() ([]byte, error)

func (*UploadTokenCreateResponseSchema) SetCreatedAt

func (o *UploadTokenCreateResponseSchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*UploadTokenCreateResponseSchema) SetEnvironmentId

func (o *UploadTokenCreateResponseSchema) SetEnvironmentId(v string)

SetEnvironmentId sets field value

func (*UploadTokenCreateResponseSchema) SetExpiresAt

func (o *UploadTokenCreateResponseSchema) SetExpiresAt(v time.Time)

SetExpiresAt sets field value

func (*UploadTokenCreateResponseSchema) SetId

SetId sets field value

func (*UploadTokenCreateResponseSchema) SetToken

func (o *UploadTokenCreateResponseSchema) SetToken(v string)

SetToken sets field value

func (*UploadTokenCreateResponseSchema) SetUpdatedAt

func (o *UploadTokenCreateResponseSchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*UploadTokenCreateResponseSchema) SetUsedAt

func (o *UploadTokenCreateResponseSchema) SetUsedAt(v time.Time)

SetUsedAt sets field value

func (UploadTokenCreateResponseSchema) ToMap

func (o UploadTokenCreateResponseSchema) ToMap() (map[string]interface{}, error)

func (*UploadTokenCreateResponseSchema) UnmarshalJSON

func (o *UploadTokenCreateResponseSchema) UnmarshalJSON(data []byte) (err error)

type UploadsDatasetPointSchema

type UploadsDatasetPointSchema struct {
	Timestamp            time.Time `json:"timestamp"`
	Uploads              int32     `json:"uploads"`
	AdditionalProperties map[string]interface{}
}

UploadsDatasetPointSchema struct for UploadsDatasetPointSchema

func NewUploadsDatasetPointSchema

func NewUploadsDatasetPointSchema(timestamp time.Time, uploads int32) *UploadsDatasetPointSchema

NewUploadsDatasetPointSchema instantiates a new UploadsDatasetPointSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadsDatasetPointSchemaWithDefaults

func NewUploadsDatasetPointSchemaWithDefaults() *UploadsDatasetPointSchema

NewUploadsDatasetPointSchemaWithDefaults instantiates a new UploadsDatasetPointSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadsDatasetPointSchema) GetTimestamp

func (o *UploadsDatasetPointSchema) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*UploadsDatasetPointSchema) GetTimestampOk

func (o *UploadsDatasetPointSchema) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*UploadsDatasetPointSchema) GetUploads

func (o *UploadsDatasetPointSchema) GetUploads() int32

GetUploads returns the Uploads field value

func (*UploadsDatasetPointSchema) GetUploadsOk

func (o *UploadsDatasetPointSchema) GetUploadsOk() (*int32, bool)

GetUploadsOk returns a tuple with the Uploads field value and a boolean to check if the value has been set.

func (UploadsDatasetPointSchema) MarshalJSON

func (o UploadsDatasetPointSchema) MarshalJSON() ([]byte, error)

func (*UploadsDatasetPointSchema) SetTimestamp

func (o *UploadsDatasetPointSchema) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*UploadsDatasetPointSchema) SetUploads

func (o *UploadsDatasetPointSchema) SetUploads(v int32)

SetUploads sets field value

func (UploadsDatasetPointSchema) ToMap

func (o UploadsDatasetPointSchema) ToMap() (map[string]interface{}, error)

func (*UploadsDatasetPointSchema) UnmarshalJSON

func (o *UploadsDatasetPointSchema) UnmarshalJSON(data []byte) (err error)

type ValidationError

type ValidationError struct {
	Loc                  []LocationInner `json:"loc"`
	Msg                  string          `json:"msg"`
	Type                 string          `json:"type"`
	AdditionalProperties map[string]interface{}
}

ValidationError struct for ValidationError

func NewValidationError

func NewValidationError(loc []LocationInner, msg string, type_ string) *ValidationError

NewValidationError instantiates a new ValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidationErrorWithDefaults

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidationError) GetLoc

func (o *ValidationError) GetLoc() []LocationInner

GetLoc returns the Loc field value

func (*ValidationError) GetLocOk

func (o *ValidationError) GetLocOk() ([]LocationInner, bool)

GetLocOk returns a tuple with the Loc field value and a boolean to check if the value has been set.

func (*ValidationError) GetMsg

func (o *ValidationError) GetMsg() string

GetMsg returns the Msg field value

func (*ValidationError) GetMsgOk

func (o *ValidationError) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (*ValidationError) GetType

func (o *ValidationError) GetType() string

GetType returns the Type field value

func (*ValidationError) GetTypeOk

func (o *ValidationError) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ValidationError) MarshalJSON

func (o ValidationError) MarshalJSON() ([]byte, error)

func (*ValidationError) SetLoc

func (o *ValidationError) SetLoc(v []LocationInner)

SetLoc sets field value

func (*ValidationError) SetMsg

func (o *ValidationError) SetMsg(v string)

SetMsg sets field value

func (*ValidationError) SetType

func (o *ValidationError) SetType(v string)

SetType sets field value

func (ValidationError) ToMap

func (o ValidationError) ToMap() (map[string]interface{}, error)

func (*ValidationError) UnmarshalJSON

func (o *ValidationError) UnmarshalJSON(data []byte) (err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL