InvoiceCreateInput Input Type
No description
input InvoiceCreateInput {
number: String!
url: String!
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
}
Fields
InvoiceCreateInput.number
● String!
non-null scalar miscellaneous
Invoice number.
InvoiceCreateInput.url
● String!
non-null scalar miscellaneous
URL of an invoice to download.
InvoiceCreateInput.metadata
● [MetadataInput!]
list input miscellaneous
Fields required to update the invoice metadata. Can be read by any API client authorized to read the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
InvoiceCreateInput.privateMetadata
● [MetadataInput!]
list input miscellaneous
Fields required to update the invoice private metadata. Requires permissions to modify and to read the metadata of the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
Member Of
invoiceCreate
mutation