| Name | Type | Description | Notes |
|---|---|---|---|
| AttributeType | string | The attribute type of the value. | |
| Value | string | A timestamp value represents a single, universal moment in time using an ISO 8601 formatted string. This means that a timestamp consists of a date, a time (with nanosecond precision), and a time zone. Attio will coerce timestamps which do not provide full nanosecond precision and UTC is assumed if no time zone is provided. For example, "2023", "2023-01", "2023-01-02", "2023-01-02T13:00", "2023-01-02T13:00:00", and "2023-01-02T13:00:00.000000000" will all be coerced to "2023-01-02T13:00:00.000000000Z". Timestamps are always returned in UTC. For example, writing a timestamp value using the string "2023-01-02T13:00:00.000000000+02:00" will result in the value "2023-01-02T11:00:00.000000000Z" being returned. The maximum date is "9999-12-31T23:59:59.999999999Z". |
func NewOutputValueAnyOf18(attributeType string, value string, ) *OutputValueAnyOf18
NewOutputValueAnyOf18 instantiates a new OutputValueAnyOf18 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 NewOutputValueAnyOf18WithDefaults() *OutputValueAnyOf18
NewOutputValueAnyOf18WithDefaults instantiates a new OutputValueAnyOf18 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 *OutputValueAnyOf18) GetAttributeType() string
GetAttributeType returns the AttributeType field if non-nil, zero value otherwise.
func (o *OutputValueAnyOf18) GetAttributeTypeOk() (*string, bool)
GetAttributeTypeOk returns a tuple with the AttributeType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OutputValueAnyOf18) SetAttributeType(v string)
SetAttributeType sets AttributeType field to given value.
func (o *OutputValueAnyOf18) GetValue() string
GetValue returns the Value field if non-nil, zero value otherwise.
func (o *OutputValueAnyOf18) GetValueOk() (*string, bool)
GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OutputValueAnyOf18) SetValue(v string)
SetValue sets Value field to given value.