/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type PersonInviteRequest = { /** * Grant Platform-admin privileges on acceptance. Defaults to `false`. */ is_admin?: boolean; /** * Grant staff privileges on acceptance. Defaults to `false`. */ is_staff?: boolean; /** * Optional enrollment payload. Forwarded to the platform invitation to auto-enroll the invitee in the listed courses, programs, or pathways on acceptance. */ enrollment_config?: Record; /** * URL to send the invitee to after they accept the invitation (e.g. a custom landing page, an enrollment screen). Passed straight through to the platform invitation row. Leave blank to use the platform default. */ redirect_to?: string; };