UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

70 lines 2.72 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. */ import type { SoSPropertyEntityAttomAllEventDetailDataSaleAmount } from './SoSPropertyEntityAttomAllEventDetailDataSaleAmount'; /** * * @export * @interface SoSPropertyEntityAttomAllEventDetailDataSale */ export interface SoSPropertyEntityAttomAllEventDetailDataSale { /** * Sale amount information * @type {SoSPropertyEntityAttomAllEventDetailDataSaleAmount} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ amount: SoSPropertyEntityAttomAllEventDetailDataSaleAmount; /** * Sale calculation information * @type {object} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ calculation: object; /** * Interfamily sale indicator * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ interfamily: string; /** * Sale transaction date * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ saleTransDate: string; /** * Sale search date * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ salesearchdate: string; /** * Cash or mortgage purchase indicator * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ cashormortgagepurchase: string; /** * Resale or new construction indicator * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataSale */ resaleornewconstruction: string; } /** * Check if a given object implements the SoSPropertyEntityAttomAllEventDetailDataSale interface. */ export declare function instanceOfSoSPropertyEntityAttomAllEventDetailDataSale(value: object): value is SoSPropertyEntityAttomAllEventDetailDataSale; export declare function SoSPropertyEntityAttomAllEventDetailDataSaleFromJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataSale; export declare function SoSPropertyEntityAttomAllEventDetailDataSaleFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityAttomAllEventDetailDataSale; export declare function SoSPropertyEntityAttomAllEventDetailDataSaleToJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataSale; export declare function SoSPropertyEntityAttomAllEventDetailDataSaleToJSONTyped(value?: SoSPropertyEntityAttomAllEventDetailDataSale | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSPropertyEntityAttomAllEventDetailDataSale.d.ts.map