INPUT_OBJECT
UpdateMailingAddressMutationInput
The input object that defines the fields for the updateMailingAddress mutation.
link GraphQL Schema definition
- input UpdateMailingAddressMutationInput {
- # Address line 1.
- : String
- # Address line 2.
- : String
- # A city.
- : String
- # A state, province, or other country subdivision.
- : Subdivision
- # A ZIP or postal code.
- : String
- # A two character country code.
- : Country
- # Data to insert into custom fields.
- : [CustomFieldDataMutationInput]
- # If IDs of `CustomField` objects that are associated with this entity are
- # provided here, they will be unset and removed. You cannot unset data where the
- # `CustomField` property `required` is set to `true`.
- : [Int64Bit]
- # A list of file IDs to be associated with this object. These must first have been
- # uploaded to the /files endpoint and must be currently unassociated.
- : [AssociateFileMutationInput]
- # The task to be performed.
- : [TaskMutationInput]
- # Setting this value to `true` will set `line2` to null.
- : Boolean
- # Setting this value to `true` will set `subdivision` to null.
- : Boolean
- }