/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ViaObjectAsResponse { /** * 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?: { from?: { address?: string; id?: number; name?: string; title?: string; }; rel?: string; to?: { address?: string; name?: string; }; [x: string]: any; }; } //# sourceMappingURL=ViaObjectAsResponse.d.ts.map