UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

23 lines 970 B
import { Organization } from './Organization'; /** * * @export * @interface GetOrganizationResponse */ export interface GetOrganizationResponse { /** * * @type {Organization} * @memberof GetOrganizationResponse */ organization: Organization; } /** * Check if a given object implements the GetOrganizationResponse interface. */ export declare function instanceOfGetOrganizationResponse(value: object): value is GetOrganizationResponse; export declare function GetOrganizationResponseFromJSON(json: any): GetOrganizationResponse; export declare function GetOrganizationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOrganizationResponse; export declare function GetOrganizationResponseToJSON(json: any): GetOrganizationResponse; export declare function GetOrganizationResponseToJSONTyped(value?: GetOrganizationResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetOrganizationResponse.d.ts.map