Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.96 KB

File metadata and controls

72 lines (39 loc) · 2.96 KB

OutputValueAnyOf18

Properties

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".

Methods

NewOutputValueAnyOf18

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

NewOutputValueAnyOf18WithDefaults

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

GetAttributeType

func (o *OutputValueAnyOf18) GetAttributeType() string

GetAttributeType returns the AttributeType field if non-nil, zero value otherwise.

GetAttributeTypeOk

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.

SetAttributeType

func (o *OutputValueAnyOf18) SetAttributeType(v string)

SetAttributeType sets AttributeType field to given value.

GetValue

func (o *OutputValueAnyOf18) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

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.

SetValue

func (o *OutputValueAnyOf18) SetValue(v string)

SetValue sets Value field to given value.

[Back to Model list] [Back to API list] [Back to README]