/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * 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 Company */ export interface Company { /** * Company name (at least one alphabethic character is required) * @type {string} * @memberof Company */ name: string; /** * Company description * @type {string} * @memberof Company */ description: string; /** * Website URL * @type {string} * @memberof Company */ websiteUrl?: string; /** * Company identification number * @type {string} * @memberof Company */ identificationNumber?: string; } /** * Check if a given object implements the Company interface. */ export declare function instanceOfCompany(value: object): boolean; export declare function CompanyFromJSON(json: any): Company; export declare function CompanyFromJSONTyped(json: any, ignoreDiscriminator: boolean): Company; export declare function CompanyToJSON(value?: Company | null): any;