/** * Request serializer for UserLicenseGroupAssignmentView POST endpoint */ export type UserLicenseGroupAssignmentCreate = { /** * The ID of the user license */ license_id: number; /** * The ID of the user group to assign the license to */ group_id: number; /** * The unique identifier for the platform */ platform_key?: string; /** * The organization identifier for the platform */ platform_org?: string; /** * Whether the assignment is active */ active?: boolean; /** * Whether the assignment has been fulfilled */ fulfilled?: boolean; /** * Additional metadata for the assignment */ metadata?: Record; };