/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseLicenseGroupAssignmentView POST endpoint */ export type CourseLicenseGroupAssignmentCreate = { /** * The ID of the course license */ license_id: number; /** * The group ID 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; };