@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
105 lines • 2.87 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 V4LeadsUpdateLeadBodyDto
*/
export interface V4LeadsUpdateLeadBodyDto {
/**
* Status of the lead
* @type {string}
* @memberof V4LeadsUpdateLeadBodyDto
*/
status?: string;
/**
* Terms of the lead
* @type {object}
* @memberof V4LeadsUpdateLeadBodyDto
*/
terms?: object;
/**
* When the lead was created
* @type {Date}
* @memberof V4LeadsUpdateLeadBodyDto
*/
createdAt?: string;
/**
* Name of the lead
* @type {string}
* @memberof V4LeadsUpdateLeadBodyDto
*/
name?: string;
/**
* SID of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
sid?: number;
/**
* Next actions for the lead
* @type {Array<string>}
* @memberof V4LeadsUpdateLeadBodyDto
*/
nextActions?: Array<string>;
/**
* Total NOI of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
totalNoi?: number;
/**
* Total all-in cost of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
totalAllIn?: number;
/**
* Total ARV of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
totalArv?: number;
/**
* Total max price of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
totalMaxPrice?: number;
/**
* Cumulative cap rate of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
capRateCumulative?: number;
/**
* Cumulative ARV uplift of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
arvUpliftCumulative?: number;
/**
* Total offer amount of the lead
* @type {number}
* @memberof V4LeadsUpdateLeadBodyDto
*/
totalOfferAmount?: number;
}
/**
* Check if a given object implements the V4LeadsUpdateLeadBodyDto interface.
*/
export declare function instanceOfV4LeadsUpdateLeadBodyDto(value: object): value is V4LeadsUpdateLeadBodyDto;
export declare function V4LeadsUpdateLeadBodyDtoFromJSON(json: any): V4LeadsUpdateLeadBodyDto;
export declare function V4LeadsUpdateLeadBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadsUpdateLeadBodyDto;
export declare function V4LeadsUpdateLeadBodyDtoToJSON(json: any): V4LeadsUpdateLeadBodyDto;
export declare function V4LeadsUpdateLeadBodyDtoToJSONTyped(value?: V4LeadsUpdateLeadBodyDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4LeadsUpdateLeadBodyDto.d.ts.map