VendorAddress
An address associated with the vendor.
type VendorAddress implements Address, Node {
city: String!
companyName: String
country: String!
id: UUID!
name: Name
postalCode: String!
street1: String!
street2: String!
}
Fields
VendorAddress.city
● String!
non-null scalar
The city part of the address
VendorAddress.companyName
● String
scalar
The company name part of the address
VendorAddress.country
● String!
non-null scalar
The country part of the address
VendorAddress.id
● UUID!
non-null scalar
The ID of the node.
VendorAddress.name
● Name
object
The name of the address
VendorAddress.postalCode
● String!
non-null scalar
The postal code part of the address
VendorAddress.street1
● String!
non-null scalar
The first part of the street part of the address
VendorAddress.street2
● String!
non-null scalar
The second part of the street part of the address
Interfaces
Address
interface
An address.
Node
interface
An object with an ID.
Returned By
createVendorAddress
mutation ● vendorAddress
query
Member Of
Invoice
object