@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
23 lines • 1.02 kB
TypeScript
import { Relationship } from './Relationship';
/**
* Batch Check Permission Body
* @export
* @interface BatchCheckPermissionBody
*/
export interface BatchCheckPermissionBody {
/**
*
* @type {Array<Relationship>}
* @memberof BatchCheckPermissionBody
*/
tuples?: Array<Relationship>;
}
/**
* Check if a given object implements the BatchCheckPermissionBody interface.
*/
export declare function instanceOfBatchCheckPermissionBody(value: object): value is BatchCheckPermissionBody;
export declare function BatchCheckPermissionBodyFromJSON(json: any): BatchCheckPermissionBody;
export declare function BatchCheckPermissionBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchCheckPermissionBody;
export declare function BatchCheckPermissionBodyToJSON(json: any): BatchCheckPermissionBody;
export declare function BatchCheckPermissionBodyToJSONTyped(value?: BatchCheckPermissionBody | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BatchCheckPermissionBody.d.ts.map