AddressInput
input for attributes of a address
graphql
input AddressInput {
billing: Boolean
city: String
country: CountryEnum
department: String
id: ID
postalCode: String
region: String
shipping: Boolean
street: String
streetAdditionalInfo: String
}
Fields
AddressInput.billing · Boolean scalar
Is this the billing address of the request. Only set this inside of a request mutation.
AddressInput.city · String scalar
AddressInput.country · CountryEnum enum
AddressInput.department · String scalar
AddressInput.id · ID scalar
AddressInput.postalCode · String scalar
AddressInput.region · String scalar
AddressInput.shipping · Boolean scalar
Is this the shipping address of the request. Only set this inside of a request mutation.
AddressInput.street · String scalar
AddressInput.streetAdditionalInfo · String scalar
Use for apartment, building, floor
Member Of
CustomerInput input