/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface GroupMembershipObjectAsResponse { /** * The time the group was created */ created_at?: string; /** * If true, tickets assigned directly to the agent will assume this membership's group */ default?: boolean; /** * The id of a group */ group_id: number; /** * Automatically assigned upon creation */ id?: number; /** * The time of the last update of the group */ updated_at?: string; /** * The API url of this record */ url?: string; /** * The id of an agent */ user_id: number; } //# sourceMappingURL=GroupMembershipObjectAsResponse.d.ts.map