/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for UserLicenseAssignmentView POST endpoint */ export type UserLicenseAssignmentCreate = { /** * The ID of the user license */ license_id: number; /** * The user ID to assign the license to */ user_id?: number; /** * The email to assign the license to */ email?: string; /** * 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; };