ApplyEventCeCreditInput
Defines the input for applying a continuing education credit in an event.
input ApplyEventCeCreditInput {
contactIds: [ID!]!
courseCreditTypeId: ID!
courseDescription: String
courseId: ID
dateEarned: LocalDate
eventId: ID!
numberOfCredits: Float!
}
Fields
ApplyEventCeCreditInput.contactIds ● [ID!]! non-null scalar
The list of identifiers of the contacts to apply continuing education credits to.
Rules:
- The list must not be empty, i.e. it must contain at least one element.
- All identifiers must be linked to the event specified in
eventId.
ApplyEventCeCreditInput.courseCreditTypeId ● ID! non-null scalar
The identifier of the course credit type.
ApplyEventCeCreditInput.courseDescription ● String scalar
A UTF-8 string representing the description of the course for the continuing education credit when the credit is external credit. Optional.
If courseId is not set then courseDescription is required.
ApplyEventCeCreditInput.courseId ● ID scalar
The identifier of the course to associate with the credit. Optional.
ApplyEventCeCreditInput.dateEarned ● LocalDate scalar
The date the continuing education credit was earned. Optional.
ApplyEventCeCreditInput.eventId ● ID! non-null scalar
The identifier of the event to apply continuing education credits in.
ApplyEventCeCreditInput.numberOfCredits ● Float! non-null scalar
The number of credits.
Member Of
applyEventCeCredit mutation