/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface TicketAuditViaObjectAsResponse { /** * This tells you how the ticket or event was created. Examples: "web", "mobile", "rule", "system" */ channel?: string; /** * For some channels a source object gives more information about how or why the ticket or event was created */ source?: { [x: string]: any; }; } //# sourceMappingURL=TicketAuditViaObjectAsResponse.d.ts.map