/** * Billingual API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * * The version of the OpenAPI document: 1.0.0 * Contact: api@billingual.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * API Key for making authenticated requests to the API. The 'id' field contains the full API key string (e.g., lk_live_...). **Save this immediately - it will not be shown again.** * @export * @interface ApiKey */ export interface ApiKey { /** * Unique API Key string used to make authenticated requests. * @type {string} * @memberof ApiKey */ id: string; /** * * @type {string} * @memberof ApiKey */ account_id: string; /** * Environment for the API key. Defaults to 'live'. * @type {string} * @memberof ApiKey */ environment: ApiKeyEnvironmentEnum; /** * * @type {Date} * @memberof ApiKey */ created_at: Date; /** * * @type {Date} * @memberof ApiKey */ updated_at: Date; } /** * @export */ export declare const ApiKeyEnvironmentEnum: { readonly Live: "live"; readonly Sandbox: "sandbox"; }; export type ApiKeyEnvironmentEnum = typeof ApiKeyEnvironmentEnum[keyof typeof ApiKeyEnvironmentEnum]; /** * Check if a given object implements the ApiKey interface. */ export declare function instanceOfApiKey(value: object): value is ApiKey; export declare function ApiKeyFromJSON(json: any): ApiKey; export declare function ApiKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKey; export declare function ApiKeyToJSON(value?: ApiKey | null): any; //# sourceMappingURL=ApiKey.d.ts.map