Sponsorship
Defines a sponsorship for an event.
type Sponsorship {
brochures: [Brochure!]!
companyLogo: Image
confirmationDate: LocalDate
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
documents(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [AttachedDocument!]!
fee: Fee!
id: ID!
inclusions: [SponsorshipItem!]!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
package: SponsorshipPackage!
paymentDetails: SponsorshipPaymentDetails!
profile: String
quantity: PositiveInt!
sponsor: Contact!
status: SponsorshipStatus!
}
Fields
Sponsorship.brochures ● [Brochure!]! non-null object
A list of brochures associated with the company who sponsors the event.
Sponsorship.companyLogo ● Image object
The logo of the company who sponsors the event. Optional.
Sponsorship.confirmationDate ● LocalDate scalar
The date at which the sponsorship was confirmed. Optional.
Sponsorship.createdAt ● DateTime! non-null scalar
The date and time the record was created.
Sponsorship.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Sponsorship.customFields ● [CustomField!]! non-null object
A list of custom field values associated with this sponsorship.
CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.
See CustomFieldSearchFilterInput
for details on how the optional input argument can be used to filter custom fields.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
Sponsorship.customFields.input ● CustomFieldSearchFilterInput! non-null input
Sponsorship.customFields.limit ● PaginationLimit! non-null scalar
Sponsorship.customFields.offset ● NonNegativeInt! non-null scalar
Sponsorship.documents ● [AttachedDocument!]! non-null interface
A list of the documents supplied for the sponsorship.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
Sponsorship.documents.limit ● PaginationLimit! non-null scalar
Sponsorship.documents.offset ● NonNegativeInt! non-null scalar
Sponsorship.fee ● Fee! non-null object
The fee for the sponsorship, including both the amount and currency.
Sponsorship.id ● ID! non-null scalar
The unique identifier for the sponsorship.
Sponsorship.inclusions ● [SponsorshipItem!]! non-null object
A list of items included within a sponsorship.
Sponsorship.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
Sponsorship.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Sponsorship.notes ● String scalar
The notes associated with the sponsorship. Optional.
Sponsorship.package ● SponsorshipPackage! non-null object
The package for the sponsorship.
Sponsorship.paymentDetails ● SponsorshipPaymentDetails! non-null object
The payment details for the sponsorship.
Sponsorship.profile ● String scalar
The profile of the company who sponsors the event. Optional.
Sponsorship.quantity ● PositiveInt! non-null scalar
The number of packages for the sponsorship.
Sponsorship.sponsor ● Contact! non-null object
The sponsor who registered the sponsorship.
Sponsorship.status ● SponsorshipStatus! non-null enum
The status for the sponsorship.
Member Of
CancelSponsorshipPayload object ● Contact object ● CreateSponsorshipPayload object ● Event object ● RestoreSponsorshipPayload object ● UpdateSponsorshipPayload object ● UpdateSponsorshipStatusPayload object