Brochure
Represents the details of a brochure. Brochures can be associated with an exhibition booking or a sponsorship.
type Brochure {
createdAt: DateTime!
createdBy: String
description: String
details: BrochureDetails!
eventId: ID!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
}
Fields
Brochure.createdAt ● DateTime! non-null scalar
The date and time the record was created.
Brochure.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Brochure.description ● String scalar
The description of the brochure. Optional.
Brochure.details ● BrochureDetails! non-null union
The description of the brochure.
Brochure.eventId ● ID! non-null scalar
The identifier of the event the brochure is associated with.
Brochure.id ● ID! non-null scalar
The unique identifier for the brochure.
Brochure.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
Brochure.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Brochure.name ● String! non-null scalar
A UTF-8 string representing the name of the brochure.
Member Of
ExhibitionBooking object ● Sponsorship object