UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

45 lines 1.42 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * 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 SoSAssetManagerEntityBase */ export interface SoSAssetManagerEntityBase { /** * * @type {number} * @memberof SoSAssetManagerEntityBase */ amid: number; /** * * @type {string} * @memberof SoSAssetManagerEntityBase */ name: string; /** * * @type {number} * @memberof SoSAssetManagerEntityBase */ feesPercentage: number; } /** * Check if a given object implements the SoSAssetManagerEntityBase interface. */ export declare function instanceOfSoSAssetManagerEntityBase(value: object): value is SoSAssetManagerEntityBase; export declare function SoSAssetManagerEntityBaseFromJSON(json: any): SoSAssetManagerEntityBase; export declare function SoSAssetManagerEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSAssetManagerEntityBase; export declare function SoSAssetManagerEntityBaseToJSON(json: any): SoSAssetManagerEntityBase; export declare function SoSAssetManagerEntityBaseToJSONTyped(value?: SoSAssetManagerEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSAssetManagerEntityBase.d.ts.map