@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
23 lines • 1.16 kB
TypeScript
import { AttributesCountDatapoint } from './AttributesCountDatapoint';
/**
* Response of the getAttributesCount endpoint
* @export
* @interface GetAttributesCountResponse
*/
export interface GetAttributesCountResponse {
/**
* The list of data points.
* @type {Array<AttributesCountDatapoint>}
* @memberof GetAttributesCountResponse
*/
readonly data: Array<AttributesCountDatapoint>;
}
/**
* Check if a given object implements the GetAttributesCountResponse interface.
*/
export declare function instanceOfGetAttributesCountResponse(value: object): value is GetAttributesCountResponse;
export declare function GetAttributesCountResponseFromJSON(json: any): GetAttributesCountResponse;
export declare function GetAttributesCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributesCountResponse;
export declare function GetAttributesCountResponseToJSON(json: any): GetAttributesCountResponse;
export declare function GetAttributesCountResponseToJSONTyped(value?: Omit<GetAttributesCountResponse, 'data'> | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetAttributesCountResponse.d.ts.map