@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
61 lines • 2.98 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.
*/
import type { SoSPropertyEntityAttomAllEventDetailDataAvmChange } from './SoSPropertyEntityAttomAllEventDetailDataAvmChange';
import type { SoSPropertyEntityAttomAllEventDetailDataAvmCondition } from './SoSPropertyEntityAttomAllEventDetailDataAvmCondition';
import type { SoSPropertyEntityAttomAllEventDetailDataAvmCalculations } from './SoSPropertyEntityAttomAllEventDetailDataAvmCalculations';
import type { SoSPropertyEntityAttomAllEventDetailDataAvmAmount } from './SoSPropertyEntityAttomAllEventDetailDataAvmAmount';
/**
*
* @export
* @interface SoSPropertyEntityAttomAllEventDetailDataAvm
*/
export interface SoSPropertyEntityAttomAllEventDetailDataAvm {
/**
* AVM amount information
* @type {SoSPropertyEntityAttomAllEventDetailDataAvmAmount}
* @memberof SoSPropertyEntityAttomAllEventDetailDataAvm
*/
amount: SoSPropertyEntityAttomAllEventDetailDataAvmAmount;
/**
* AVM change information
* @type {SoSPropertyEntityAttomAllEventDetailDataAvmChange}
* @memberof SoSPropertyEntityAttomAllEventDetailDataAvm
*/
AVMChange: SoSPropertyEntityAttomAllEventDetailDataAvmChange;
/**
* AVM condition estimates
* @type {SoSPropertyEntityAttomAllEventDetailDataAvmCondition}
* @memberof SoSPropertyEntityAttomAllEventDetailDataAvm
*/
condition: SoSPropertyEntityAttomAllEventDetailDataAvmCondition;
/**
* AVM event date
* @type {string}
* @memberof SoSPropertyEntityAttomAllEventDetailDataAvm
*/
eventDate: string;
/**
* AVM calculations
* @type {SoSPropertyEntityAttomAllEventDetailDataAvmCalculations}
* @memberof SoSPropertyEntityAttomAllEventDetailDataAvm
*/
calculations: SoSPropertyEntityAttomAllEventDetailDataAvmCalculations;
}
/**
* Check if a given object implements the SoSPropertyEntityAttomAllEventDetailDataAvm interface.
*/
export declare function instanceOfSoSPropertyEntityAttomAllEventDetailDataAvm(value: object): value is SoSPropertyEntityAttomAllEventDetailDataAvm;
export declare function SoSPropertyEntityAttomAllEventDetailDataAvmFromJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataAvm;
export declare function SoSPropertyEntityAttomAllEventDetailDataAvmFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityAttomAllEventDetailDataAvm;
export declare function SoSPropertyEntityAttomAllEventDetailDataAvmToJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataAvm;
export declare function SoSPropertyEntityAttomAllEventDetailDataAvmToJSONTyped(value?: SoSPropertyEntityAttomAllEventDetailDataAvm | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSPropertyEntityAttomAllEventDetailDataAvm.d.ts.map