import type * as Merge from "../../../index"; /** * # The Viewer Object * ### Description * The `Viewer` object is used to represent a User or Team within a company. * * ### Usage Example * TODO */ export interface Viewer { id?: string; /** The third-party API ID of the matching object. */ remoteId?: string; /** The datetime that this object was created by Merge. */ createdAt?: Date; /** The datetime that this object was modified by Merge. */ modifiedAt?: Date; /** The Team this Viewer belongs to. */ team?: Merge.ticketing.ViewerTeam; /** The User this Viewer belongs to. */ user?: Merge.ticketing.ViewerUser; }