/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetSubscriptionItemResponse } from './getSubscriptionItemResponse'; /** Response object for getting a usage */ export interface GetUsageResponse { /** Id */ id?: string | null; /** Quantity */ quantity?: number | null; /** Description */ description?: string | null; /** Used at */ usedAt?: string | null; /** Creation date */ createdAt?: string | null; /** Status */ status?: string | null; deletedAt?: string | null; /** Subscription item */ subscriptionItem?: GetSubscriptionItemResponse | null; /** Identification code in the client system */ code?: string | null; /** Identification group in the client system */ group?: string | null; /** Field used in item scheme type 'Percent' */ amount?: number | null; } export declare const getUsageResponseSchema: Schema;