@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
29 lines • 1.1 kB
TypeScript
import { MemberInvite } from './MemberInvite';
/**
*
* @export
* @interface CreateInviteResponse
*/
export interface CreateInviteResponse {
/**
* A list of all invites for this resource
* @type {Array<MemberInvite>}
* @memberof CreateInviteResponse
*/
all_invites: Array<MemberInvite>;
/**
*
* @type {MemberInvite}
* @memberof CreateInviteResponse
*/
created_invite: MemberInvite;
}
/**
* Check if a given object implements the CreateInviteResponse interface.
*/
export declare function instanceOfCreateInviteResponse(value: object): value is CreateInviteResponse;
export declare function CreateInviteResponseFromJSON(json: any): CreateInviteResponse;
export declare function CreateInviteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateInviteResponse;
export declare function CreateInviteResponseToJSON(json: any): CreateInviteResponse;
export declare function CreateInviteResponseToJSONTyped(value?: CreateInviteResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateInviteResponse.d.ts.map