/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Shape returned by `POST /persons/{id}/invite/`. */ export type PersonInviteResponse = { /** * UUID of the person that was invited. */ person_id: string; /** * Id of the newly created invitation. */ invitation_id: number; /** * Email address the invitation was sent to. */ invitation_email: string; /** * Key of the Platform the invitation targets. */ platform_key: string; /** * Whether the invitation is auto-accepted when the invitee first signs in. */ auto_accept: boolean; /** * Whether the invitation is currently active. */ active: boolean; /** * URL the invitee will be sent to after accepting. Null/blank means the platform default destination. */ redirect_to: string | null; /** * When the invitation was created. */ created: string | null; };