/** * OriginStamp Client * * OpenAPI spec version: 3.0 * OriginStamp Documentation: https://doc.originstamp.org * Contact: mail@originstamp.com * Generated by: https://github.com/swagger-api/swagger-codegen.git */ /** * Get the current credit usage for this month. */ export interface UsageResponse { /** * Represents the number of used credits for the current month. */ consumedCredits?: number; /** * Represents the total number of credits per month. */ creditsPerMonth?: number; /** * Represents the remaining number of credits for the current month. */ remainingCredits?: number; }