/** * 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. */ /** * * @export * @interface CreateApiKeyRequest */ export interface CreateApiKeyRequest { /** * Environment for the API key. Defaults to 'live'. * @type {string} * @memberof CreateApiKeyRequest */ environment?: CreateApiKeyRequestEnvironmentEnum | null; } /** * @export */ export declare const CreateApiKeyRequestEnvironmentEnum: { readonly Live: "live"; readonly Sandbox: "sandbox"; }; export type CreateApiKeyRequestEnvironmentEnum = typeof CreateApiKeyRequestEnvironmentEnum[keyof typeof CreateApiKeyRequestEnvironmentEnum]; /** * Check if a given object implements the CreateApiKeyRequest interface. */ export declare function instanceOfCreateApiKeyRequest(value: object): value is CreateApiKeyRequest; export declare function CreateApiKeyRequestFromJSON(json: any): CreateApiKeyRequest; export declare function CreateApiKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateApiKeyRequest; export declare function CreateApiKeyRequestToJSON(value?: CreateApiKeyRequest | null): any; //# sourceMappingURL=CreateApiKeyRequest.d.ts.map