Skip to content

Latest commit

 

History

History
51 lines (28 loc) · 2.32 KB

File metadata and controls

51 lines (28 loc) · 2.32 KB

InputValueAnyOf14

Properties

Name Type Description Notes
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

NewInputValueAnyOf14

func NewInputValueAnyOf14(value string, ) *InputValueAnyOf14

NewInputValueAnyOf14 instantiates a new InputValueAnyOf14 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

NewInputValueAnyOf14WithDefaults

func NewInputValueAnyOf14WithDefaults() *InputValueAnyOf14

NewInputValueAnyOf14WithDefaults instantiates a new InputValueAnyOf14 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

GetValue

func (o *InputValueAnyOf14) GetValue() string

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

GetValueOk

func (o *InputValueAnyOf14) 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 *InputValueAnyOf14) SetValue(v string)

SetValue sets Value field to given value.

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