/** * Response serializer for user license group assignment details */ export type UserLicenseGroupAssignmentDetail = { /** * The unique identifier for the assignment */ id: number; /** * The ID of the group assigned the license */ group_id: number; /** * The name of the group assigned the license */ group_name: string; /** * Whether the assignment is active */ active: boolean; /** * Whether the assignment has been fulfilled */ fulfilled?: boolean; /** * URL to redirect to after fulfillment */ redirect_to?: string | null; /** * Additional metadata for the assignment */ metadata: Record; /** * The ID of the user license */ license_id: number; /** * The name of the user license */ license_name: string; /** * The platform key associated with the license */ platform_key: string; };