UpdateContactBillingInput
Defines the input for updating a contact's billing details in an event.
input UpdateContactBillingInput {
contactId: ID!
email: EmailAddress
eventId: ID!
fax: String
firstName: String
jobTitle: String
lastName: String
organizationName: String
phone: String
title: String
}
Fields
UpdateContactBillingInput.contactId
● ID!
non-null scalar
The identifier of the contact.
UpdateContactBillingInput.email
● EmailAddress
scalar
The email address of the billing contact. Optional.
UpdateContactBillingInput.eventId
● ID!
non-null scalar
The identifier of the event the contact is associated with.
UpdateContactBillingInput.fax
● String
scalar
UTF-8 string value that represents the contact's billing fax number. Optional.
UpdateContactBillingInput.firstName
● String
scalar
UTF-8 string value that represents the first name of the billing contact. Optional.
UpdateContactBillingInput.jobTitle
● String
scalar
UTF-8 string value that represents the job title of the billing contact. Optional.
UpdateContactBillingInput.lastName
● String
scalar
UTF-8 string value that represents the last name of the billing contact. Optional.
UpdateContactBillingInput.organizationName
● String
scalar
UTF-8 string value that represents the organization of the billing contact. Optional.
UpdateContactBillingInput.phone
● String
scalar
UTF-8 string value that represents the contact's billing phone number. Optional.
UpdateContactBillingInput.title
● String
scalar
UTF-8 string value that represents the title of the billing contact's name such as Dr/Mrs/Mr. Optional.
Member Of
updateContactBilling
mutation