| Name | Type | Description | Notes |
|---|---|---|---|
| Title | string | The name of the attribute. The title will be visible across Attio's UI. | |
| Description | NullableString | A text description for the attribute. | |
| ApiSlug | string | A unique, human-readable slug to access the attribute through URLs and API calls. Formatted in snake case. | |
| Type | string | The type of the attribute. This value affects the possible `config` values. Attributes of type "status" are not supported on objects. | |
| IsRequired | bool | When `is_required` is `true`, new records/entries must have a value for this attribute. If `false`, values may be `null`. This value does not affect existing data and you do not need to backfill `null` values if changing `is_required` from `false` to `true`. | |
| IsUnique | bool | Whether or not new values for this attribute must be unique. Uniqueness restrictions are only applied to new data and do not apply retroactively to previously created data. | |
| IsMultiselect | bool | Whether or not this attribute can have multiple values. Multiselect is only available on some value types. | |
| DefaultValue | Pointer to NullableV2TargetIdentifierAttributesPostRequestDataDefaultValue | [optional] | |
| Relationship | Pointer to V2TargetIdentifierAttributesPostRequestDataRelationship | [optional] | |
| Config | V2TargetIdentifierAttributesPostRequestDataConfig |
func NewV2TargetIdentifierAttributesPostRequestData(title string, description NullableString, apiSlug string, type_ string, isRequired bool, isUnique bool, isMultiselect bool, config V2TargetIdentifierAttributesPostRequestDataConfig, ) *V2TargetIdentifierAttributesPostRequestData
NewV2TargetIdentifierAttributesPostRequestData instantiates a new V2TargetIdentifierAttributesPostRequestData 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 NewV2TargetIdentifierAttributesPostRequestDataWithDefaults() *V2TargetIdentifierAttributesPostRequestData
NewV2TargetIdentifierAttributesPostRequestDataWithDefaults instantiates a new V2TargetIdentifierAttributesPostRequestData 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 (o *V2TargetIdentifierAttributesPostRequestData) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetTitleOk() (*string, bool)
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) SetDescriptionNil(b bool)
SetDescriptionNil sets the value for Description to be an explicit nil
func (o *V2TargetIdentifierAttributesPostRequestData) UnsetDescription()
UnsetDescription ensures that no value is present for Description, not even an explicit nil
func (o *V2TargetIdentifierAttributesPostRequestData) GetApiSlug() string
GetApiSlug returns the ApiSlug field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetApiSlugOk() (*string, bool)
GetApiSlugOk returns a tuple with the ApiSlug field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetApiSlug(v string)
SetApiSlug sets ApiSlug field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetType(v string)
SetType sets Type field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsRequired() bool
GetIsRequired returns the IsRequired field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsRequiredOk() (*bool, bool)
GetIsRequiredOk returns a tuple with the IsRequired field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetIsRequired(v bool)
SetIsRequired sets IsRequired field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsUnique() bool
GetIsUnique returns the IsUnique field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsUniqueOk() (*bool, bool)
GetIsUniqueOk returns a tuple with the IsUnique field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetIsUnique(v bool)
SetIsUnique sets IsUnique field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsMultiselect() bool
GetIsMultiselect returns the IsMultiselect field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetIsMultiselectOk() (*bool, bool)
GetIsMultiselectOk returns a tuple with the IsMultiselect field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetIsMultiselect(v bool)
SetIsMultiselect sets IsMultiselect field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) GetDefaultValue() V2TargetIdentifierAttributesPostRequestDataDefaultValue
GetDefaultValue returns the DefaultValue field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetDefaultValueOk() (*V2TargetIdentifierAttributesPostRequestDataDefaultValue, bool)
GetDefaultValueOk returns a tuple with the DefaultValue field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetDefaultValue(v V2TargetIdentifierAttributesPostRequestDataDefaultValue)
SetDefaultValue sets DefaultValue field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) HasDefaultValue() bool
HasDefaultValue returns a boolean if a field has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetDefaultValueNil(b bool)
SetDefaultValueNil sets the value for DefaultValue to be an explicit nil
func (o *V2TargetIdentifierAttributesPostRequestData) UnsetDefaultValue()
UnsetDefaultValue ensures that no value is present for DefaultValue, not even an explicit nil
func (o *V2TargetIdentifierAttributesPostRequestData) GetRelationship() V2TargetIdentifierAttributesPostRequestDataRelationship
GetRelationship returns the Relationship field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetRelationshipOk() (*V2TargetIdentifierAttributesPostRequestDataRelationship, bool)
GetRelationshipOk returns a tuple with the Relationship field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetRelationship(v V2TargetIdentifierAttributesPostRequestDataRelationship)
SetRelationship sets Relationship field to given value.
func (o *V2TargetIdentifierAttributesPostRequestData) HasRelationship() bool
HasRelationship returns a boolean if a field has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) GetConfig() V2TargetIdentifierAttributesPostRequestDataConfig
GetConfig returns the Config field if non-nil, zero value otherwise.
func (o *V2TargetIdentifierAttributesPostRequestData) GetConfigOk() (*V2TargetIdentifierAttributesPostRequestDataConfig, bool)
GetConfigOk returns a tuple with the Config field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *V2TargetIdentifierAttributesPostRequestData) SetConfig(v V2TargetIdentifierAttributesPostRequestDataConfig)
SetConfig sets Config field to given value.