1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
# WriteAuthorizationModelRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**TypeDefinitions** | [**[]TypeDefinition**](TypeDefinition.md) | |
**SchemaVersion** | **string** | |
**Conditions** | Pointer to [**map[string]Condition**](Condition.md) | | [optional]
## Methods
### NewWriteAuthorizationModelRequest
`func NewWriteAuthorizationModelRequest(typeDefinitions []TypeDefinition, schemaVersion string, ) *WriteAuthorizationModelRequest`
NewWriteAuthorizationModelRequest instantiates a new WriteAuthorizationModelRequest 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
### NewWriteAuthorizationModelRequestWithDefaults
`func NewWriteAuthorizationModelRequestWithDefaults() *WriteAuthorizationModelRequest`
NewWriteAuthorizationModelRequestWithDefaults instantiates a new WriteAuthorizationModelRequest 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
### GetTypeDefinitions
`func (o *WriteAuthorizationModelRequest) GetTypeDefinitions() []TypeDefinition`
GetTypeDefinitions returns the TypeDefinitions field if non-nil, zero value otherwise.
### GetTypeDefinitionsOk
`func (o *WriteAuthorizationModelRequest) GetTypeDefinitionsOk() (*[]TypeDefinition, bool)`
GetTypeDefinitionsOk returns a tuple with the TypeDefinitions field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTypeDefinitions
`func (o *WriteAuthorizationModelRequest) SetTypeDefinitions(v []TypeDefinition)`
SetTypeDefinitions sets TypeDefinitions field to given value.
### GetSchemaVersion
`func (o *WriteAuthorizationModelRequest) GetSchemaVersion() string`
GetSchemaVersion returns the SchemaVersion field if non-nil, zero value otherwise.
### GetSchemaVersionOk
`func (o *WriteAuthorizationModelRequest) GetSchemaVersionOk() (*string, bool)`
GetSchemaVersionOk returns a tuple with the SchemaVersion field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSchemaVersion
`func (o *WriteAuthorizationModelRequest) SetSchemaVersion(v string)`
SetSchemaVersion sets SchemaVersion field to given value.
### GetConditions
`func (o *WriteAuthorizationModelRequest) GetConditions() map[string]Condition`
GetConditions returns the Conditions field if non-nil, zero value otherwise.
### GetConditionsOk
`func (o *WriteAuthorizationModelRequest) GetConditionsOk() (*map[string]Condition, bool)`
GetConditionsOk returns a tuple with the Conditions field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetConditions
`func (o *WriteAuthorizationModelRequest) SetConditions(v map[string]Condition)`
SetConditions sets Conditions field to given value.
### HasConditions
`func (o *WriteAuthorizationModelRequest) HasConditions() bool`
HasConditions returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|