interface OpenNewTicketOptions {
    customFields?: Record<number, string>;
    subject?: string;
    tags?: string[];
}

Properties

customFields?: Record<number, string>

The custom fields to set on the ticket. The key is the ID of the custom field, and the value is the value to set.

subject?: string

The subject of the ticket.

tags?: string[]

The tags associated with the ticket.

Generated using TypeDoc