@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
47 lines • 2.2 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 { SoSPropertyEntityAttomAllEventDetailDataStatus } from './SoSPropertyEntityAttomAllEventDetailDataStatus';
import type { SoSPropertyEntityAttomAllEventDetailDataProperty } from './SoSPropertyEntityAttomAllEventDetailDataProperty';
/**
*
* @export
* @interface SoSPropertyEntityAttomAllEventDetailData
*/
export interface SoSPropertyEntityAttomAllEventDetailData {
/**
* API response status information
* @type {SoSPropertyEntityAttomAllEventDetailDataStatus}
* @memberof SoSPropertyEntityAttomAllEventDetailData
*/
status: SoSPropertyEntityAttomAllEventDetailDataStatus;
/**
* Array of property data from ATTOM
* @type {Array<SoSPropertyEntityAttomAllEventDetailDataProperty>}
* @memberof SoSPropertyEntityAttomAllEventDetailData
*/
property: Array<SoSPropertyEntityAttomAllEventDetailDataProperty>;
/**
* Timestamp of the data retrieval
* @type {string}
* @memberof SoSPropertyEntityAttomAllEventDetailData
*/
timestamp: string;
}
/**
* Check if a given object implements the SoSPropertyEntityAttomAllEventDetailData interface.
*/
export declare function instanceOfSoSPropertyEntityAttomAllEventDetailData(value: object): value is SoSPropertyEntityAttomAllEventDetailData;
export declare function SoSPropertyEntityAttomAllEventDetailDataFromJSON(json: any): SoSPropertyEntityAttomAllEventDetailData;
export declare function SoSPropertyEntityAttomAllEventDetailDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityAttomAllEventDetailData;
export declare function SoSPropertyEntityAttomAllEventDetailDataToJSON(json: any): SoSPropertyEntityAttomAllEventDetailData;
export declare function SoSPropertyEntityAttomAllEventDetailDataToJSONTyped(value?: SoSPropertyEntityAttomAllEventDetailData | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSPropertyEntityAttomAllEventDetailData.d.ts.map