UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

29 lines 931 B
import { Money } from './Money'; /** * * @export * @interface GenericUsage */ export interface GenericUsage { /** * * @type {Money} * @memberof GenericUsage */ additional_price: Money; /** * IncludedUsage is the number of included items. * @type {number} * @memberof GenericUsage */ included_usage: number; } /** * Check if a given object implements the GenericUsage interface. */ export declare function instanceOfGenericUsage(value: object): value is GenericUsage; export declare function GenericUsageFromJSON(json: any): GenericUsage; export declare function GenericUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericUsage; export declare function GenericUsageToJSON(json: any): GenericUsage; export declare function GenericUsageToJSONTyped(value?: GenericUsage | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GenericUsage.d.ts.map