Versions in this module Expand all Collapse all v2 v2.0.1 Nov 7, 2022 v2.0.0 Nov 7, 2022 Changes in this version + var ContextAPIKeys = contextKey("apiKeys") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextHttpSignatureAuth = contextKey("httpsignature") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + func CacheExpires(r *http.Response) time.Time + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + CoreApi *CoreApiService + PublicObjectSchemasApi *PublicObjectSchemasApiService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiArchiveAssociationRequest struct + ApiService *CoreApiService + func (r ApiArchiveAssociationRequest) Execute() (*http.Response, error) + type ApiArchiveRequest struct + ApiService *CoreApiService + func (r ApiArchiveRequest) Archived(archived bool) ApiArchiveRequest + func (r ApiArchiveRequest) Execute() (*http.Response, error) + type ApiCreateAssociationRequest struct + ApiService *CoreApiService + func (r ApiCreateAssociationRequest) AssociationDefinitionEgg(associationDefinitionEgg AssociationDefinitionEgg) ApiCreateAssociationRequest + func (r ApiCreateAssociationRequest) Execute() (*AssociationDefinition, *http.Response, error) + type ApiCreateRequest struct + ApiService *CoreApiService + func (r ApiCreateRequest) Execute() (*ObjectSchema, *http.Response, error) + func (r ApiCreateRequest) ObjectSchemaEgg(objectSchemaEgg ObjectSchemaEgg) ApiCreateRequest + type ApiGetAllRequest struct + ApiService *CoreApiService + func (r ApiGetAllRequest) Archived(archived bool) ApiGetAllRequest + func (r ApiGetAllRequest) Execute() (*CollectionResponseObjectSchemaNoPaging, *http.Response, error) + type ApiGetByIDRequest struct + ApiService *CoreApiService + func (r ApiGetByIDRequest) Execute() (*ObjectSchema, *http.Response, error) + type ApiPurgeRequest struct + ApiService *PublicObjectSchemasApiService + func (r ApiPurgeRequest) Execute() (*http.Response, error) + type ApiUpdateRequest struct + ApiService *CoreApiService + func (r ApiUpdateRequest) Execute() (*ObjectTypeDefinition, *http.Response, error) + func (r ApiUpdateRequest) ObjectTypeDefinitionPatch(objectTypeDefinitionPatch ObjectTypeDefinitionPatch) ApiUpdateRequest + type AssociationDefinition struct + CreatedAt *time.Time + FromObjectTypeId string + Id string + Name *string + ToObjectTypeId string + UpdatedAt *time.Time + func NewAssociationDefinition(fromObjectTypeId string, toObjectTypeId string, id string) *AssociationDefinition + func NewAssociationDefinitionWithDefaults() *AssociationDefinition + func (o *AssociationDefinition) GetCreatedAt() time.Time + func (o *AssociationDefinition) GetCreatedAtOk() (*time.Time, bool) + func (o *AssociationDefinition) GetFromObjectTypeId() string + func (o *AssociationDefinition) GetFromObjectTypeIdOk() (*string, bool) + func (o *AssociationDefinition) GetId() string + func (o *AssociationDefinition) GetIdOk() (*string, bool) + func (o *AssociationDefinition) GetName() string + func (o *AssociationDefinition) GetNameOk() (*string, bool) + func (o *AssociationDefinition) GetToObjectTypeId() string + func (o *AssociationDefinition) GetToObjectTypeIdOk() (*string, bool) + func (o *AssociationDefinition) GetUpdatedAt() time.Time + func (o *AssociationDefinition) GetUpdatedAtOk() (*time.Time, bool) + func (o *AssociationDefinition) HasCreatedAt() bool + func (o *AssociationDefinition) HasName() bool + func (o *AssociationDefinition) HasUpdatedAt() bool + func (o *AssociationDefinition) SetCreatedAt(v time.Time) + func (o *AssociationDefinition) SetFromObjectTypeId(v string) + func (o *AssociationDefinition) SetId(v string) + func (o *AssociationDefinition) SetName(v string) + func (o *AssociationDefinition) SetToObjectTypeId(v string) + func (o *AssociationDefinition) SetUpdatedAt(v time.Time) + func (o AssociationDefinition) MarshalJSON() ([]byte, error) + type AssociationDefinitionEgg struct + FromObjectTypeId string + Name *string + ToObjectTypeId string + func NewAssociationDefinitionEgg(fromObjectTypeId string, toObjectTypeId string) *AssociationDefinitionEgg + func NewAssociationDefinitionEggWithDefaults() *AssociationDefinitionEgg + func (o *AssociationDefinitionEgg) GetFromObjectTypeId() string + func (o *AssociationDefinitionEgg) GetFromObjectTypeIdOk() (*string, bool) + func (o *AssociationDefinitionEgg) GetName() string + func (o *AssociationDefinitionEgg) GetNameOk() (*string, bool) + func (o *AssociationDefinitionEgg) GetToObjectTypeId() string + func (o *AssociationDefinitionEgg) GetToObjectTypeIdOk() (*string, bool) + func (o *AssociationDefinitionEgg) HasName() bool + func (o *AssociationDefinitionEgg) SetFromObjectTypeId(v string) + func (o *AssociationDefinitionEgg) SetName(v string) + func (o *AssociationDefinitionEgg) SetToObjectTypeId(v string) + func (o AssociationDefinitionEgg) MarshalJSON() ([]byte, error) + type BasicAuth struct + Password string + UserName string + type CollectionResponseObjectSchemaNoPaging struct + Results []ObjectSchema + func NewCollectionResponseObjectSchemaNoPaging(results []ObjectSchema) *CollectionResponseObjectSchemaNoPaging + func NewCollectionResponseObjectSchemaNoPagingWithDefaults() *CollectionResponseObjectSchemaNoPaging + func (o *CollectionResponseObjectSchemaNoPaging) GetResults() []ObjectSchema + func (o *CollectionResponseObjectSchemaNoPaging) GetResultsOk() ([]ObjectSchema, bool) + func (o *CollectionResponseObjectSchemaNoPaging) SetResults(v []ObjectSchema) + func (o CollectionResponseObjectSchemaNoPaging) MarshalJSON() ([]byte, error) + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type CoreApiService service + func (a *CoreApiService) Archive(ctx context.Context, objectType string) ApiArchiveRequest + func (a *CoreApiService) ArchiveAssociation(ctx context.Context, objectType string, associationIdentifier string) ApiArchiveAssociationRequest + func (a *CoreApiService) ArchiveAssociationExecute(r ApiArchiveAssociationRequest) (*http.Response, error) + func (a *CoreApiService) ArchiveExecute(r ApiArchiveRequest) (*http.Response, error) + func (a *CoreApiService) Create(ctx context.Context) ApiCreateRequest + func (a *CoreApiService) CreateAssociation(ctx context.Context, objectType string) ApiCreateAssociationRequest + func (a *CoreApiService) CreateAssociationExecute(r ApiCreateAssociationRequest) (*AssociationDefinition, *http.Response, error) + func (a *CoreApiService) CreateExecute(r ApiCreateRequest) (*ObjectSchema, *http.Response, error) + func (a *CoreApiService) GetAll(ctx context.Context) ApiGetAllRequest + func (a *CoreApiService) GetAllExecute(r ApiGetAllRequest) (*CollectionResponseObjectSchemaNoPaging, *http.Response, error) + func (a *CoreApiService) GetByID(ctx context.Context, objectType string) ApiGetByIDRequest + func (a *CoreApiService) GetByIDExecute(r ApiGetByIDRequest) (*ObjectSchema, *http.Response, error) + func (a *CoreApiService) Update(ctx context.Context, objectType string) ApiUpdateRequest + func (a *CoreApiService) UpdateExecute(r ApiUpdateRequest) (*ObjectTypeDefinition, *http.Response, error) + type Error struct + Category string + Context *map[string][]string + CorrelationId string + Errors []ErrorDetail + Links *map[string]string + Message string + SubCategory *string + func NewError(message string, correlationId string, category string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetCategory() string + func (o *Error) GetCategoryOk() (*string, bool) + func (o *Error) GetContext() map[string][]string + func (o *Error) GetContextOk() (*map[string][]string, bool) + func (o *Error) GetCorrelationId() string + func (o *Error) GetCorrelationIdOk() (*string, bool) + func (o *Error) GetErrors() []ErrorDetail + func (o *Error) GetErrorsOk() ([]ErrorDetail, bool) + func (o *Error) GetLinks() map[string]string + func (o *Error) GetLinksOk() (*map[string]string, bool) + func (o *Error) GetMessage() string + func (o *Error) GetMessageOk() (*string, bool) + func (o *Error) GetSubCategory() string + func (o *Error) GetSubCategoryOk() (*string, bool) + func (o *Error) HasContext() bool + func (o *Error) HasErrors() bool + func (o *Error) HasLinks() bool + func (o *Error) HasSubCategory() bool + func (o *Error) SetCategory(v string) + func (o *Error) SetContext(v map[string][]string) + func (o *Error) SetCorrelationId(v string) + func (o *Error) SetErrors(v []ErrorDetail) + func (o *Error) SetLinks(v map[string]string) + func (o *Error) SetMessage(v string) + func (o *Error) SetSubCategory(v string) + func (o Error) MarshalJSON() ([]byte, error) + type ErrorDetail struct + Code *string + Context *map[string][]string + In *string + Message string + SubCategory *string + func NewErrorDetail(message string) *ErrorDetail + func NewErrorDetailWithDefaults() *ErrorDetail + func (o *ErrorDetail) GetCode() string + func (o *ErrorDetail) GetCodeOk() (*string, bool) + func (o *ErrorDetail) GetContext() map[string][]string + func (o *ErrorDetail) GetContextOk() (*map[string][]string, bool) + func (o *ErrorDetail) GetIn() string + func (o *ErrorDetail) GetInOk() (*string, bool) + func (o *ErrorDetail) GetMessage() string + func (o *ErrorDetail) GetMessageOk() (*string, bool) + func (o *ErrorDetail) GetSubCategory() string + func (o *ErrorDetail) GetSubCategoryOk() (*string, bool) + func (o *ErrorDetail) HasCode() bool + func (o *ErrorDetail) HasContext() bool + func (o *ErrorDetail) HasIn() bool + func (o *ErrorDetail) HasSubCategory() bool + func (o *ErrorDetail) SetCode(v string) + func (o *ErrorDetail) SetContext(v map[string][]string) + func (o *ErrorDetail) SetIn(v string) + func (o *ErrorDetail) SetMessage(v string) + func (o *ErrorDetail) SetSubCategory(v string) + func (o ErrorDetail) MarshalJSON() ([]byte, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type NullableAssociationDefinition struct + func NewNullableAssociationDefinition(val *AssociationDefinition) *NullableAssociationDefinition + func (v *NullableAssociationDefinition) Set(val *AssociationDefinition) + func (v *NullableAssociationDefinition) UnmarshalJSON(src []byte) error + func (v *NullableAssociationDefinition) Unset() + func (v NullableAssociationDefinition) Get() *AssociationDefinition + func (v NullableAssociationDefinition) IsSet() bool + func (v NullableAssociationDefinition) MarshalJSON() ([]byte, error) + type NullableAssociationDefinitionEgg struct + func NewNullableAssociationDefinitionEgg(val *AssociationDefinitionEgg) *NullableAssociationDefinitionEgg + func (v *NullableAssociationDefinitionEgg) Set(val *AssociationDefinitionEgg) + func (v *NullableAssociationDefinitionEgg) UnmarshalJSON(src []byte) error + func (v *NullableAssociationDefinitionEgg) Unset() + func (v NullableAssociationDefinitionEgg) Get() *AssociationDefinitionEgg + func (v NullableAssociationDefinitionEgg) IsSet() bool + func (v NullableAssociationDefinitionEgg) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCollectionResponseObjectSchemaNoPaging struct + func NewNullableCollectionResponseObjectSchemaNoPaging(val *CollectionResponseObjectSchemaNoPaging) *NullableCollectionResponseObjectSchemaNoPaging + func (v *NullableCollectionResponseObjectSchemaNoPaging) Set(val *CollectionResponseObjectSchemaNoPaging) + func (v *NullableCollectionResponseObjectSchemaNoPaging) UnmarshalJSON(src []byte) error + func (v *NullableCollectionResponseObjectSchemaNoPaging) Unset() + func (v NullableCollectionResponseObjectSchemaNoPaging) Get() *CollectionResponseObjectSchemaNoPaging + func (v NullableCollectionResponseObjectSchemaNoPaging) IsSet() bool + func (v NullableCollectionResponseObjectSchemaNoPaging) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableErrorDetail struct + func NewNullableErrorDetail(val *ErrorDetail) *NullableErrorDetail + func (v *NullableErrorDetail) Set(val *ErrorDetail) + func (v *NullableErrorDetail) UnmarshalJSON(src []byte) error + func (v *NullableErrorDetail) Unset() + func (v NullableErrorDetail) Get() *ErrorDetail + func (v NullableErrorDetail) IsSet() bool + func (v NullableErrorDetail) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableObjectSchema struct + func NewNullableObjectSchema(val *ObjectSchema) *NullableObjectSchema + func (v *NullableObjectSchema) Set(val *ObjectSchema) + func (v *NullableObjectSchema) UnmarshalJSON(src []byte) error + func (v *NullableObjectSchema) Unset() + func (v NullableObjectSchema) Get() *ObjectSchema + func (v NullableObjectSchema) IsSet() bool + func (v NullableObjectSchema) MarshalJSON() ([]byte, error) + type NullableObjectSchemaEgg struct + func NewNullableObjectSchemaEgg(val *ObjectSchemaEgg) *NullableObjectSchemaEgg + func (v *NullableObjectSchemaEgg) Set(val *ObjectSchemaEgg) + func (v *NullableObjectSchemaEgg) UnmarshalJSON(src []byte) error + func (v *NullableObjectSchemaEgg) Unset() + func (v NullableObjectSchemaEgg) Get() *ObjectSchemaEgg + func (v NullableObjectSchemaEgg) IsSet() bool + func (v NullableObjectSchemaEgg) MarshalJSON() ([]byte, error) + type NullableObjectTypeDefinition struct + func NewNullableObjectTypeDefinition(val *ObjectTypeDefinition) *NullableObjectTypeDefinition + func (v *NullableObjectTypeDefinition) Set(val *ObjectTypeDefinition) + func (v *NullableObjectTypeDefinition) UnmarshalJSON(src []byte) error + func (v *NullableObjectTypeDefinition) Unset() + func (v NullableObjectTypeDefinition) Get() *ObjectTypeDefinition + func (v NullableObjectTypeDefinition) IsSet() bool + func (v NullableObjectTypeDefinition) MarshalJSON() ([]byte, error) + type NullableObjectTypeDefinitionLabels struct + func NewNullableObjectTypeDefinitionLabels(val *ObjectTypeDefinitionLabels) *NullableObjectTypeDefinitionLabels + func (v *NullableObjectTypeDefinitionLabels) Set(val *ObjectTypeDefinitionLabels) + func (v *NullableObjectTypeDefinitionLabels) UnmarshalJSON(src []byte) error + func (v *NullableObjectTypeDefinitionLabels) Unset() + func (v NullableObjectTypeDefinitionLabels) Get() *ObjectTypeDefinitionLabels + func (v NullableObjectTypeDefinitionLabels) IsSet() bool + func (v NullableObjectTypeDefinitionLabels) MarshalJSON() ([]byte, error) + type NullableObjectTypeDefinitionPatch struct + func NewNullableObjectTypeDefinitionPatch(val *ObjectTypeDefinitionPatch) *NullableObjectTypeDefinitionPatch + func (v *NullableObjectTypeDefinitionPatch) Set(val *ObjectTypeDefinitionPatch) + func (v *NullableObjectTypeDefinitionPatch) UnmarshalJSON(src []byte) error + func (v *NullableObjectTypeDefinitionPatch) Unset() + func (v NullableObjectTypeDefinitionPatch) Get() *ObjectTypeDefinitionPatch + func (v NullableObjectTypeDefinitionPatch) IsSet() bool + func (v NullableObjectTypeDefinitionPatch) MarshalJSON() ([]byte, error) + type NullableObjectTypePropertyCreate struct + func NewNullableObjectTypePropertyCreate(val *ObjectTypePropertyCreate) *NullableObjectTypePropertyCreate + func (v *NullableObjectTypePropertyCreate) Set(val *ObjectTypePropertyCreate) + func (v *NullableObjectTypePropertyCreate) UnmarshalJSON(src []byte) error + func (v *NullableObjectTypePropertyCreate) Unset() + func (v NullableObjectTypePropertyCreate) Get() *ObjectTypePropertyCreate + func (v NullableObjectTypePropertyCreate) IsSet() bool + func (v NullableObjectTypePropertyCreate) MarshalJSON() ([]byte, error) + type NullableOption struct + func NewNullableOption(val *Option) *NullableOption + func (v *NullableOption) Set(val *Option) + func (v *NullableOption) UnmarshalJSON(src []byte) error + func (v *NullableOption) Unset() + func (v NullableOption) Get() *Option + func (v NullableOption) IsSet() bool + func (v NullableOption) MarshalJSON() ([]byte, error) + type NullableOptionInput struct + func NewNullableOptionInput(val *OptionInput) *NullableOptionInput + func (v *NullableOptionInput) Set(val *OptionInput) + func (v *NullableOptionInput) UnmarshalJSON(src []byte) error + func (v *NullableOptionInput) Unset() + func (v NullableOptionInput) Get() *OptionInput + func (v NullableOptionInput) IsSet() bool + func (v NullableOptionInput) MarshalJSON() ([]byte, error) + type NullableProperty struct + func NewNullableProperty(val *Property) *NullableProperty + func (v *NullableProperty) Set(val *Property) + func (v *NullableProperty) UnmarshalJSON(src []byte) error + func (v *NullableProperty) Unset() + func (v NullableProperty) Get() *Property + func (v NullableProperty) IsSet() bool + func (v NullableProperty) MarshalJSON() ([]byte, error) + type NullablePropertyModificationMetadata struct + func NewNullablePropertyModificationMetadata(val *PropertyModificationMetadata) *NullablePropertyModificationMetadata + func (v *NullablePropertyModificationMetadata) Set(val *PropertyModificationMetadata) + func (v *NullablePropertyModificationMetadata) UnmarshalJSON(src []byte) error + func (v *NullablePropertyModificationMetadata) Unset() + func (v NullablePropertyModificationMetadata) Get() *PropertyModificationMetadata + func (v NullablePropertyModificationMetadata) IsSet() bool + func (v NullablePropertyModificationMetadata) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type ObjectSchema struct + Archived bool + Associations []AssociationDefinition + CreatedAt *time.Time + FullyQualifiedName string + Id string + Labels ObjectTypeDefinitionLabels + Name string + ObjectTypeId string + PrimaryDisplayProperty *string + Properties []Property + RequiredProperties []string + SearchableProperties []string + SecondaryDisplayProperties []string + UpdatedAt *time.Time + func NewObjectSchema(labels ObjectTypeDefinitionLabels, requiredProperties []string, ...) *ObjectSchema + func NewObjectSchemaWithDefaults() *ObjectSchema + func (o *ObjectSchema) GetArchived() bool + func (o *ObjectSchema) GetArchivedOk() (*bool, bool) + func (o *ObjectSchema) GetAssociations() []AssociationDefinition + func (o *ObjectSchema) GetAssociationsOk() ([]AssociationDefinition, bool) + func (o *ObjectSchema) GetCreatedAt() time.Time + func (o *ObjectSchema) GetCreatedAtOk() (*time.Time, bool) + func (o *ObjectSchema) GetFullyQualifiedName() string + func (o *ObjectSchema) GetFullyQualifiedNameOk() (*string, bool) + func (o *ObjectSchema) GetId() string + func (o *ObjectSchema) GetIdOk() (*string, bool) + func (o *ObjectSchema) GetLabels() ObjectTypeDefinitionLabels + func (o *ObjectSchema) GetLabelsOk() (*ObjectTypeDefinitionLabels, bool) + func (o *ObjectSchema) GetName() string + func (o *ObjectSchema) GetNameOk() (*string, bool) + func (o *ObjectSchema) GetObjectTypeId() string + func (o *ObjectSchema) GetObjectTypeIdOk() (*string, bool) + func (o *ObjectSchema) GetPrimaryDisplayProperty() string + func (o *ObjectSchema) GetPrimaryDisplayPropertyOk() (*string, bool) + func (o *ObjectSchema) GetProperties() []Property + func (o *ObjectSchema) GetPropertiesOk() ([]Property, bool) + func (o *ObjectSchema) GetRequiredProperties() []string + func (o *ObjectSchema) GetRequiredPropertiesOk() ([]string, bool) + func (o *ObjectSchema) GetSearchableProperties() []string + func (o *ObjectSchema) GetSearchablePropertiesOk() ([]string, bool) + func (o *ObjectSchema) GetSecondaryDisplayProperties() []string + func (o *ObjectSchema) GetSecondaryDisplayPropertiesOk() ([]string, bool) + func (o *ObjectSchema) GetUpdatedAt() time.Time + func (o *ObjectSchema) GetUpdatedAtOk() (*time.Time, bool) + func (o *ObjectSchema) HasCreatedAt() bool + func (o *ObjectSchema) HasPrimaryDisplayProperty() bool + func (o *ObjectSchema) HasUpdatedAt() bool + func (o *ObjectSchema) SetArchived(v bool) + func (o *ObjectSchema) SetAssociations(v []AssociationDefinition) + func (o *ObjectSchema) SetCreatedAt(v time.Time) + func (o *ObjectSchema) SetFullyQualifiedName(v string) + func (o *ObjectSchema) SetId(v string) + func (o *ObjectSchema) SetLabels(v ObjectTypeDefinitionLabels) + func (o *ObjectSchema) SetName(v string) + func (o *ObjectSchema) SetObjectTypeId(v string) + func (o *ObjectSchema) SetPrimaryDisplayProperty(v string) + func (o *ObjectSchema) SetProperties(v []Property) + func (o *ObjectSchema) SetRequiredProperties(v []string) + func (o *ObjectSchema) SetSearchableProperties(v []string) + func (o *ObjectSchema) SetSecondaryDisplayProperties(v []string) + func (o *ObjectSchema) SetUpdatedAt(v time.Time) + func (o ObjectSchema) MarshalJSON() ([]byte, error) + type ObjectSchemaEgg struct + AssociatedObjects []string + Labels ObjectTypeDefinitionLabels + Name string + PrimaryDisplayProperty *string + Properties []ObjectTypePropertyCreate + RequiredProperties []string + SearchableProperties []string + SecondaryDisplayProperties []string + func NewObjectSchemaEgg(labels ObjectTypeDefinitionLabels, requiredProperties []string, ...) *ObjectSchemaEgg + func NewObjectSchemaEggWithDefaults() *ObjectSchemaEgg + func (o *ObjectSchemaEgg) GetAssociatedObjects() []string + func (o *ObjectSchemaEgg) GetAssociatedObjectsOk() ([]string, bool) + func (o *ObjectSchemaEgg) GetLabels() ObjectTypeDefinitionLabels + func (o *ObjectSchemaEgg) GetLabelsOk() (*ObjectTypeDefinitionLabels, bool) + func (o *ObjectSchemaEgg) GetName() string + func (o *ObjectSchemaEgg) GetNameOk() (*string, bool) + func (o *ObjectSchemaEgg) GetPrimaryDisplayProperty() string + func (o *ObjectSchemaEgg) GetPrimaryDisplayPropertyOk() (*string, bool) + func (o *ObjectSchemaEgg) GetProperties() []ObjectTypePropertyCreate + func (o *ObjectSchemaEgg) GetPropertiesOk() ([]ObjectTypePropertyCreate, bool) + func (o *ObjectSchemaEgg) GetRequiredProperties() []string + func (o *ObjectSchemaEgg) GetRequiredPropertiesOk() ([]string, bool) + func (o *ObjectSchemaEgg) GetSearchableProperties() []string + func (o *ObjectSchemaEgg) GetSearchablePropertiesOk() ([]string, bool) + func (o *ObjectSchemaEgg) GetSecondaryDisplayProperties() []string + func (o *ObjectSchemaEgg) GetSecondaryDisplayPropertiesOk() ([]string, bool) + func (o *ObjectSchemaEgg) HasPrimaryDisplayProperty() bool + func (o *ObjectSchemaEgg) SetAssociatedObjects(v []string) + func (o *ObjectSchemaEgg) SetLabels(v ObjectTypeDefinitionLabels) + func (o *ObjectSchemaEgg) SetName(v string) + func (o *ObjectSchemaEgg) SetPrimaryDisplayProperty(v string) + func (o *ObjectSchemaEgg) SetProperties(v []ObjectTypePropertyCreate) + func (o *ObjectSchemaEgg) SetRequiredProperties(v []string) + func (o *ObjectSchemaEgg) SetSearchableProperties(v []string) + func (o *ObjectSchemaEgg) SetSecondaryDisplayProperties(v []string) + func (o ObjectSchemaEgg) MarshalJSON() ([]byte, error) + type ObjectTypeDefinition struct + Archived bool + CreatedAt *time.Time + FullyQualifiedName string + Id string + Labels ObjectTypeDefinitionLabels + Name string + ObjectTypeId string + PortalId *int32 + PrimaryDisplayProperty *string + RequiredProperties []string + SearchableProperties []string + SecondaryDisplayProperties []string + UpdatedAt *time.Time + func NewObjectTypeDefinition(labels ObjectTypeDefinitionLabels, requiredProperties []string, ...) *ObjectTypeDefinition + func NewObjectTypeDefinitionWithDefaults() *ObjectTypeDefinition + func (o *ObjectTypeDefinition) GetArchived() bool + func (o *ObjectTypeDefinition) GetArchivedOk() (*bool, bool) + func (o *ObjectTypeDefinition) GetCreatedAt() time.Time + func (o *ObjectTypeDefinition) GetCreatedAtOk() (*time.Time, bool) + func (o *ObjectTypeDefinition) GetFullyQualifiedName() string + func (o *ObjectTypeDefinition) GetFullyQualifiedNameOk() (*string, bool) + func (o *ObjectTypeDefinition) GetId() string + func (o *ObjectTypeDefinition) GetIdOk() (*string, bool) + func (o *ObjectTypeDefinition) GetLabels() ObjectTypeDefinitionLabels + func (o *ObjectTypeDefinition) GetLabelsOk() (*ObjectTypeDefinitionLabels, bool) + func (o *ObjectTypeDefinition) GetName() string + func (o *ObjectTypeDefinition) GetNameOk() (*string, bool) + func (o *ObjectTypeDefinition) GetObjectTypeId() string + func (o *ObjectTypeDefinition) GetObjectTypeIdOk() (*string, bool) + func (o *ObjectTypeDefinition) GetPortalId() int32 + func (o *ObjectTypeDefinition) GetPortalIdOk() (*int32, bool) + func (o *ObjectTypeDefinition) GetPrimaryDisplayProperty() string + func (o *ObjectTypeDefinition) GetPrimaryDisplayPropertyOk() (*string, bool) + func (o *ObjectTypeDefinition) GetRequiredProperties() []string + func (o *ObjectTypeDefinition) GetRequiredPropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinition) GetSearchableProperties() []string + func (o *ObjectTypeDefinition) GetSearchablePropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinition) GetSecondaryDisplayProperties() []string + func (o *ObjectTypeDefinition) GetSecondaryDisplayPropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinition) GetUpdatedAt() time.Time + func (o *ObjectTypeDefinition) GetUpdatedAtOk() (*time.Time, bool) + func (o *ObjectTypeDefinition) HasCreatedAt() bool + func (o *ObjectTypeDefinition) HasPortalId() bool + func (o *ObjectTypeDefinition) HasPrimaryDisplayProperty() bool + func (o *ObjectTypeDefinition) HasUpdatedAt() bool + func (o *ObjectTypeDefinition) SetArchived(v bool) + func (o *ObjectTypeDefinition) SetCreatedAt(v time.Time) + func (o *ObjectTypeDefinition) SetFullyQualifiedName(v string) + func (o *ObjectTypeDefinition) SetId(v string) + func (o *ObjectTypeDefinition) SetLabels(v ObjectTypeDefinitionLabels) + func (o *ObjectTypeDefinition) SetName(v string) + func (o *ObjectTypeDefinition) SetObjectTypeId(v string) + func (o *ObjectTypeDefinition) SetPortalId(v int32) + func (o *ObjectTypeDefinition) SetPrimaryDisplayProperty(v string) + func (o *ObjectTypeDefinition) SetRequiredProperties(v []string) + func (o *ObjectTypeDefinition) SetSearchableProperties(v []string) + func (o *ObjectTypeDefinition) SetSecondaryDisplayProperties(v []string) + func (o *ObjectTypeDefinition) SetUpdatedAt(v time.Time) + func (o ObjectTypeDefinition) MarshalJSON() ([]byte, error) + type ObjectTypeDefinitionLabels struct + Plural *string + Singular *string + func NewObjectTypeDefinitionLabels() *ObjectTypeDefinitionLabels + func NewObjectTypeDefinitionLabelsWithDefaults() *ObjectTypeDefinitionLabels + func (o *ObjectTypeDefinitionLabels) GetPlural() string + func (o *ObjectTypeDefinitionLabels) GetPluralOk() (*string, bool) + func (o *ObjectTypeDefinitionLabels) GetSingular() string + func (o *ObjectTypeDefinitionLabels) GetSingularOk() (*string, bool) + func (o *ObjectTypeDefinitionLabels) HasPlural() bool + func (o *ObjectTypeDefinitionLabels) HasSingular() bool + func (o *ObjectTypeDefinitionLabels) SetPlural(v string) + func (o *ObjectTypeDefinitionLabels) SetSingular(v string) + func (o ObjectTypeDefinitionLabels) MarshalJSON() ([]byte, error) + type ObjectTypeDefinitionPatch struct + Labels *ObjectTypeDefinitionLabels + PrimaryDisplayProperty *string + RequiredProperties []string + Restorable *bool + SearchableProperties []string + SecondaryDisplayProperties []string + func NewObjectTypeDefinitionPatch() *ObjectTypeDefinitionPatch + func NewObjectTypeDefinitionPatchWithDefaults() *ObjectTypeDefinitionPatch + func (o *ObjectTypeDefinitionPatch) GetLabels() ObjectTypeDefinitionLabels + func (o *ObjectTypeDefinitionPatch) GetLabelsOk() (*ObjectTypeDefinitionLabels, bool) + func (o *ObjectTypeDefinitionPatch) GetPrimaryDisplayProperty() string + func (o *ObjectTypeDefinitionPatch) GetPrimaryDisplayPropertyOk() (*string, bool) + func (o *ObjectTypeDefinitionPatch) GetRequiredProperties() []string + func (o *ObjectTypeDefinitionPatch) GetRequiredPropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinitionPatch) GetRestorable() bool + func (o *ObjectTypeDefinitionPatch) GetRestorableOk() (*bool, bool) + func (o *ObjectTypeDefinitionPatch) GetSearchableProperties() []string + func (o *ObjectTypeDefinitionPatch) GetSearchablePropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinitionPatch) GetSecondaryDisplayProperties() []string + func (o *ObjectTypeDefinitionPatch) GetSecondaryDisplayPropertiesOk() ([]string, bool) + func (o *ObjectTypeDefinitionPatch) HasLabels() bool + func (o *ObjectTypeDefinitionPatch) HasPrimaryDisplayProperty() bool + func (o *ObjectTypeDefinitionPatch) HasRequiredProperties() bool + func (o *ObjectTypeDefinitionPatch) HasRestorable() bool + func (o *ObjectTypeDefinitionPatch) HasSearchableProperties() bool + func (o *ObjectTypeDefinitionPatch) HasSecondaryDisplayProperties() bool + func (o *ObjectTypeDefinitionPatch) SetLabels(v ObjectTypeDefinitionLabels) + func (o *ObjectTypeDefinitionPatch) SetPrimaryDisplayProperty(v string) + func (o *ObjectTypeDefinitionPatch) SetRequiredProperties(v []string) + func (o *ObjectTypeDefinitionPatch) SetRestorable(v bool) + func (o *ObjectTypeDefinitionPatch) SetSearchableProperties(v []string) + func (o *ObjectTypeDefinitionPatch) SetSecondaryDisplayProperties(v []string) + func (o ObjectTypeDefinitionPatch) MarshalJSON() ([]byte, error) + type ObjectTypePropertyCreate struct + Description *string + DisplayOrder *int32 + FieldType string + GroupName *string + HasUniqueValue *bool + Hidden *bool + Label string + Name string + Options []OptionInput + Type string + func NewObjectTypePropertyCreate(name string, label string, type_ string, fieldType string) *ObjectTypePropertyCreate + func NewObjectTypePropertyCreateWithDefaults() *ObjectTypePropertyCreate + func (o *ObjectTypePropertyCreate) GetDescription() string + func (o *ObjectTypePropertyCreate) GetDescriptionOk() (*string, bool) + func (o *ObjectTypePropertyCreate) GetDisplayOrder() int32 + func (o *ObjectTypePropertyCreate) GetDisplayOrderOk() (*int32, bool) + func (o *ObjectTypePropertyCreate) GetFieldType() string + func (o *ObjectTypePropertyCreate) GetFieldTypeOk() (*string, bool) + func (o *ObjectTypePropertyCreate) GetGroupName() string + func (o *ObjectTypePropertyCreate) GetGroupNameOk() (*string, bool) + func (o *ObjectTypePropertyCreate) GetHasUniqueValue() bool + func (o *ObjectTypePropertyCreate) GetHasUniqueValueOk() (*bool, bool) + func (o *ObjectTypePropertyCreate) GetHidden() bool + func (o *ObjectTypePropertyCreate) GetHiddenOk() (*bool, bool) + func (o *ObjectTypePropertyCreate) GetLabel() string + func (o *ObjectTypePropertyCreate) GetLabelOk() (*string, bool) + func (o *ObjectTypePropertyCreate) GetName() string + func (o *ObjectTypePropertyCreate) GetNameOk() (*string, bool) + func (o *ObjectTypePropertyCreate) GetOptions() []OptionInput + func (o *ObjectTypePropertyCreate) GetOptionsOk() ([]OptionInput, bool) + func (o *ObjectTypePropertyCreate) GetType() string + func (o *ObjectTypePropertyCreate) GetTypeOk() (*string, bool) + func (o *ObjectTypePropertyCreate) HasDescription() bool + func (o *ObjectTypePropertyCreate) HasDisplayOrder() bool + func (o *ObjectTypePropertyCreate) HasGroupName() bool + func (o *ObjectTypePropertyCreate) HasHasUniqueValue() bool + func (o *ObjectTypePropertyCreate) HasHidden() bool + func (o *ObjectTypePropertyCreate) HasOptions() bool + func (o *ObjectTypePropertyCreate) SetDescription(v string) + func (o *ObjectTypePropertyCreate) SetDisplayOrder(v int32) + func (o *ObjectTypePropertyCreate) SetFieldType(v string) + func (o *ObjectTypePropertyCreate) SetGroupName(v string) + func (o *ObjectTypePropertyCreate) SetHasUniqueValue(v bool) + func (o *ObjectTypePropertyCreate) SetHidden(v bool) + func (o *ObjectTypePropertyCreate) SetLabel(v string) + func (o *ObjectTypePropertyCreate) SetName(v string) + func (o *ObjectTypePropertyCreate) SetOptions(v []OptionInput) + func (o *ObjectTypePropertyCreate) SetType(v string) + func (o ObjectTypePropertyCreate) MarshalJSON() ([]byte, error) + type Option struct + Description *string + DisplayOrder *int32 + Hidden bool + Label string + Value string + func NewOption(label string, value string, hidden bool) *Option + func NewOptionWithDefaults() *Option + func (o *Option) GetDescription() string + func (o *Option) GetDescriptionOk() (*string, bool) + func (o *Option) GetDisplayOrder() int32 + func (o *Option) GetDisplayOrderOk() (*int32, bool) + func (o *Option) GetHidden() bool + func (o *Option) GetHiddenOk() (*bool, bool) + func (o *Option) GetLabel() string + func (o *Option) GetLabelOk() (*string, bool) + func (o *Option) GetValue() string + func (o *Option) GetValueOk() (*string, bool) + func (o *Option) HasDescription() bool + func (o *Option) HasDisplayOrder() bool + func (o *Option) SetDescription(v string) + func (o *Option) SetDisplayOrder(v int32) + func (o *Option) SetHidden(v bool) + func (o *Option) SetLabel(v string) + func (o *Option) SetValue(v string) + func (o Option) MarshalJSON() ([]byte, error) + type OptionInput struct + Description *string + DisplayOrder int32 + Hidden bool + Label string + Value string + func NewOptionInput(label string, value string, displayOrder int32, hidden bool) *OptionInput + func NewOptionInputWithDefaults() *OptionInput + func (o *OptionInput) GetDescription() string + func (o *OptionInput) GetDescriptionOk() (*string, bool) + func (o *OptionInput) GetDisplayOrder() int32 + func (o *OptionInput) GetDisplayOrderOk() (*int32, bool) + func (o *OptionInput) GetHidden() bool + func (o *OptionInput) GetHiddenOk() (*bool, bool) + func (o *OptionInput) GetLabel() string + func (o *OptionInput) GetLabelOk() (*string, bool) + func (o *OptionInput) GetValue() string + func (o *OptionInput) GetValueOk() (*string, bool) + func (o *OptionInput) HasDescription() bool + func (o *OptionInput) SetDescription(v string) + func (o *OptionInput) SetDisplayOrder(v int32) + func (o *OptionInput) SetHidden(v bool) + func (o *OptionInput) SetLabel(v string) + func (o *OptionInput) SetValue(v string) + func (o OptionInput) MarshalJSON() ([]byte, error) + type Property struct + Archived *bool + ArchivedAt *time.Time + Calculated *bool + CreatedAt *time.Time + CreatedUserId *string + Description string + DisplayOrder *int32 + ExternalOptions *bool + FieldType string + FormField *bool + GroupName string + HasUniqueValue *bool + Hidden *bool + HubspotDefined *bool + Label string + ModificationMetadata *PropertyModificationMetadata + Name string + Options []Option + ReferencedObjectType *string + ShowCurrencySymbol *bool + Type string + UpdatedAt *time.Time + UpdatedUserId *string + func NewProperty(name string, label string, type_ string, fieldType string, description string, ...) *Property + func NewPropertyWithDefaults() *Property + func (o *Property) GetArchived() bool + func (o *Property) GetArchivedAt() time.Time + func (o *Property) GetArchivedAtOk() (*time.Time, bool) + func (o *Property) GetArchivedOk() (*bool, bool) + func (o *Property) GetCalculated() bool + func (o *Property) GetCalculatedOk() (*bool, bool) + func (o *Property) GetCreatedAt() time.Time + func (o *Property) GetCreatedAtOk() (*time.Time, bool) + func (o *Property) GetCreatedUserId() string + func (o *Property) GetCreatedUserIdOk() (*string, bool) + func (o *Property) GetDescription() string + func (o *Property) GetDescriptionOk() (*string, bool) + func (o *Property) GetDisplayOrder() int32 + func (o *Property) GetDisplayOrderOk() (*int32, bool) + func (o *Property) GetExternalOptions() bool + func (o *Property) GetExternalOptionsOk() (*bool, bool) + func (o *Property) GetFieldType() string + func (o *Property) GetFieldTypeOk() (*string, bool) + func (o *Property) GetFormField() bool + func (o *Property) GetFormFieldOk() (*bool, bool) + func (o *Property) GetGroupName() string + func (o *Property) GetGroupNameOk() (*string, bool) + func (o *Property) GetHasUniqueValue() bool + func (o *Property) GetHasUniqueValueOk() (*bool, bool) + func (o *Property) GetHidden() bool + func (o *Property) GetHiddenOk() (*bool, bool) + func (o *Property) GetHubspotDefined() bool + func (o *Property) GetHubspotDefinedOk() (*bool, bool) + func (o *Property) GetLabel() string + func (o *Property) GetLabelOk() (*string, bool) + func (o *Property) GetModificationMetadata() PropertyModificationMetadata + func (o *Property) GetModificationMetadataOk() (*PropertyModificationMetadata, bool) + func (o *Property) GetName() string + func (o *Property) GetNameOk() (*string, bool) + func (o *Property) GetOptions() []Option + func (o *Property) GetOptionsOk() ([]Option, bool) + func (o *Property) GetReferencedObjectType() string + func (o *Property) GetReferencedObjectTypeOk() (*string, bool) + func (o *Property) GetShowCurrencySymbol() bool + func (o *Property) GetShowCurrencySymbolOk() (*bool, bool) + func (o *Property) GetType() string + func (o *Property) GetTypeOk() (*string, bool) + func (o *Property) GetUpdatedAt() time.Time + func (o *Property) GetUpdatedAtOk() (*time.Time, bool) + func (o *Property) GetUpdatedUserId() string + func (o *Property) GetUpdatedUserIdOk() (*string, bool) + func (o *Property) HasArchived() bool + func (o *Property) HasArchivedAt() bool + func (o *Property) HasCalculated() bool + func (o *Property) HasCreatedAt() bool + func (o *Property) HasCreatedUserId() bool + func (o *Property) HasDisplayOrder() bool + func (o *Property) HasExternalOptions() bool + func (o *Property) HasFormField() bool + func (o *Property) HasHasUniqueValue() bool + func (o *Property) HasHidden() bool + func (o *Property) HasHubspotDefined() bool + func (o *Property) HasModificationMetadata() bool + func (o *Property) HasReferencedObjectType() bool + func (o *Property) HasShowCurrencySymbol() bool + func (o *Property) HasUpdatedAt() bool + func (o *Property) HasUpdatedUserId() bool + func (o *Property) SetArchived(v bool) + func (o *Property) SetArchivedAt(v time.Time) + func (o *Property) SetCalculated(v bool) + func (o *Property) SetCreatedAt(v time.Time) + func (o *Property) SetCreatedUserId(v string) + func (o *Property) SetDescription(v string) + func (o *Property) SetDisplayOrder(v int32) + func (o *Property) SetExternalOptions(v bool) + func (o *Property) SetFieldType(v string) + func (o *Property) SetFormField(v bool) + func (o *Property) SetGroupName(v string) + func (o *Property) SetHasUniqueValue(v bool) + func (o *Property) SetHidden(v bool) + func (o *Property) SetHubspotDefined(v bool) + func (o *Property) SetLabel(v string) + func (o *Property) SetModificationMetadata(v PropertyModificationMetadata) + func (o *Property) SetName(v string) + func (o *Property) SetOptions(v []Option) + func (o *Property) SetReferencedObjectType(v string) + func (o *Property) SetShowCurrencySymbol(v bool) + func (o *Property) SetType(v string) + func (o *Property) SetUpdatedAt(v time.Time) + func (o *Property) SetUpdatedUserId(v string) + func (o Property) MarshalJSON() ([]byte, error) + type PropertyModificationMetadata struct + Archivable bool + ReadOnlyDefinition bool + ReadOnlyOptions *bool + ReadOnlyValue bool + func NewPropertyModificationMetadata(archivable bool, readOnlyDefinition bool, readOnlyValue bool) *PropertyModificationMetadata + func NewPropertyModificationMetadataWithDefaults() *PropertyModificationMetadata + func (o *PropertyModificationMetadata) GetArchivable() bool + func (o *PropertyModificationMetadata) GetArchivableOk() (*bool, bool) + func (o *PropertyModificationMetadata) GetReadOnlyDefinition() bool + func (o *PropertyModificationMetadata) GetReadOnlyDefinitionOk() (*bool, bool) + func (o *PropertyModificationMetadata) GetReadOnlyOptions() bool + func (o *PropertyModificationMetadata) GetReadOnlyOptionsOk() (*bool, bool) + func (o *PropertyModificationMetadata) GetReadOnlyValue() bool + func (o *PropertyModificationMetadata) GetReadOnlyValueOk() (*bool, bool) + func (o *PropertyModificationMetadata) HasReadOnlyOptions() bool + func (o *PropertyModificationMetadata) SetArchivable(v bool) + func (o *PropertyModificationMetadata) SetReadOnlyDefinition(v bool) + func (o *PropertyModificationMetadata) SetReadOnlyOptions(v bool) + func (o *PropertyModificationMetadata) SetReadOnlyValue(v bool) + func (o PropertyModificationMetadata) MarshalJSON() ([]byte, error) + type PublicObjectSchemasApiService service + func (a *PublicObjectSchemasApiService) Purge(ctx context.Context, objectType string) ApiPurgeRequest + func (a *PublicObjectSchemasApiService) PurgeExecute(r ApiPurgeRequest) (*http.Response, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string