/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseLicenseAccessRequestManagementView POST endpoint */ export type CourseAccessRequestUpdate = { /** * The ID of the access request to update */ request_id: number; /** * The unique identifier for the platform */ platform_key?: string; /** * The organization identifier for the platform */ platform_org?: string; /** * Whether to approve the request */ approved?: boolean; /** * Whether the request should remain active */ active?: boolean; };