QueueCreateQueueInput constructor
const
QueueCreateQueueInput({})
Implementation
@JsonSerializable(includeIfNull: false)
const factory QueueCreateQueueInput({
/// Display name for the queue (must be unique)
required String name,
@QueueCreateQueueSubjectTypesConverter()
List<QueueCreateQueueSubjectTypes>? subjectTypes,
/// Collection name for record subjects. Required if subjectTypes includes 'record'.
String? collection,
List<String>? reportTypes,
/// Optional description of the queue
String? description,
List<String>? recommendedPolicies,
Map<String, dynamic>? $unknown,
}) = _QueueCreateQueueInput;