@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 1.02 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.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 LedgerAccountCategories
*/
export interface LedgerAccountCategories {
/**
*
* @type {string}
* @memberof LedgerAccountCategories
*/
readonly id?: string;
/**
* The name of the category.
* @type {string}
* @memberof LedgerAccountCategories
*/
readonly name?: string;
}
export declare function LedgerAccountCategoriesFromJSON(json: any): LedgerAccountCategories;
export declare function LedgerAccountCategoriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): LedgerAccountCategories;
export declare function LedgerAccountCategoriesToJSON(value?: LedgerAccountCategories | null): any;