SponsorshipSetup
Defines the settings for sponsorships for an event in EventsAir.
type SponsorshipSetup {
additionalCharges: [AdditionalCharge!]!
checklist: [ChecklistItem!]!
documentTypes: [DocumentType!]!
inclusions(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Inclusion!]!
preferences: SponsorshipPreferences!
sponsorshipPackages(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [SponsorshipPackage!]!
}
Fields
SponsorshipSetup.additionalCharges ● [AdditionalCharge!]! non-null object
The list of available additional charges for the sponsorship.
SponsorshipSetup.checklist ● [ChecklistItem!]! non-null object
The list of checklist items for sponsorships.
SponsorshipSetup.documentTypes ● [DocumentType!]! non-null interface
The types of documents defined for a sponsorship.
SponsorshipSetup.inclusions ● [Inclusion!]! non-null object
A list of inclusions available to add to sponsorship packages and sponsorships for this event.
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).
SponsorshipSetup.inclusions.limit ● PaginationLimit! non-null scalar
SponsorshipSetup.inclusions.offset ● NonNegativeInt! non-null scalar
SponsorshipSetup.preferences ● SponsorshipPreferences! non-null object
The configuration preferences for sponsorship.
SponsorshipSetup.sponsorshipPackages ● [SponsorshipPackage!]! non-null object
A list of sponsorship packages available for this event.
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).
SponsorshipSetup.sponsorshipPackages.limit ● PaginationLimit! non-null scalar
SponsorshipSetup.sponsorshipPackages.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object