CeContactStoreNoteType
Defines the type for a note within the scope of a continuing education contact store.
type CeContactStoreNoteType {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreNote!]!
uniqueCode: String
}
Fields
CeContactStoreNoteType.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
CeContactStoreNoteType.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
CeContactStoreNoteType.id
● ID!
non-null scalar
The unique identifier for the note type.
CeContactStoreNoteType.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
CeContactStoreNoteType.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
CeContactStoreNoteType.name
● String!
non-null scalar
A UTF-8 string representing the name of the note type.
CeContactStoreNoteType.notes
● [CeContactStoreNote!]!
non-null object
A list of notes for this note type.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
CeContactStoreNoteType.notes.limit
● PaginationLimit!
non-null scalar
CeContactStoreNoteType.notes.offset
● NonNegativeInt!
non-null scalar
CeContactStoreNoteType.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the note type. Optional.
The value must be unique across all note types for an event.
Member Of
CeContactStoreNote
object ● CeContactStoreNoteSetup
object