TicketSaveMobileDTOInternal constructor

TicketSaveMobileDTOInternal({
  1. String? subject,
  2. String? description,
  3. TicketSaveMobileDTOInternalTicketPriorityEnum? ticketPriority,
  4. DateTime? dueDate,
  5. int? categoryId,
  6. int? areaId,
  7. List<TicketRelatedDTOInternal> relatedEntities = const [],
  8. List<FileTransferDTOInternal> attachments = const [],
  9. List<ActionDTOInternal> actions = const [],
  10. bool? privateTicket,
})

Returns a new TicketSaveMobileDTOInternal instance.

Implementation

TicketSaveMobileDTOInternal({
  this.subject,
  this.description,
  this.ticketPriority,
  this.dueDate,
  this.categoryId,
  this.areaId,
  this.relatedEntities = const [],
  this.attachments = const [],
  this.actions = const [],
  this.privateTicket,
});