@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
45 lines • 1.5 kB
TypeScript
/**
* 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 SoSMlsListingEntityDataTax
*/
export interface SoSMlsListingEntityDataTax {
/**
* Tax identification number
* @type {string}
* @memberof SoSMlsListingEntityDataTax
*/
id?: string;
/**
* Tax year
* @type {number}
* @memberof SoSMlsListingEntityDataTax
*/
taxYear?: number;
/**
* Annual tax amount
* @type {number}
* @memberof SoSMlsListingEntityDataTax
*/
taxAnnualAmount: number;
}
/**
* Check if a given object implements the SoSMlsListingEntityDataTax interface.
*/
export declare function instanceOfSoSMlsListingEntityDataTax(value: object): value is SoSMlsListingEntityDataTax;
export declare function SoSMlsListingEntityDataTaxFromJSON(json: any): SoSMlsListingEntityDataTax;
export declare function SoSMlsListingEntityDataTaxFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSMlsListingEntityDataTax;
export declare function SoSMlsListingEntityDataTaxToJSON(json: any): SoSMlsListingEntityDataTax;
export declare function SoSMlsListingEntityDataTaxToJSONTyped(value?: SoSMlsListingEntityDataTax | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSMlsListingEntityDataTax.d.ts.map