UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

51 lines 2.09 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. */ /** * * @export * @interface SoSPropertyEntityUnderwritingModelsMaxPrice */ export interface SoSPropertyEntityUnderwritingModelsMaxPrice { /** * Number of tries for max price cap rate calculation * @type {number} * @memberof SoSPropertyEntityUnderwritingModelsMaxPrice */ max_price_cap_rate_tries: number; /** * Maximum price based on cap rate * @type {number} * @memberof SoSPropertyEntityUnderwritingModelsMaxPrice */ max_price_cap_rate: number; /** * Number of tries for max price ARV uplift calculation * @type {number} * @memberof SoSPropertyEntityUnderwritingModelsMaxPrice */ max_price_arv_uplift_tries: number; /** * Maximum price based on ARV uplift * @type {number} * @memberof SoSPropertyEntityUnderwritingModelsMaxPrice */ max_price_arv_uplift: number; } /** * Check if a given object implements the SoSPropertyEntityUnderwritingModelsMaxPrice interface. */ export declare function instanceOfSoSPropertyEntityUnderwritingModelsMaxPrice(value: object): value is SoSPropertyEntityUnderwritingModelsMaxPrice; export declare function SoSPropertyEntityUnderwritingModelsMaxPriceFromJSON(json: any): SoSPropertyEntityUnderwritingModelsMaxPrice; export declare function SoSPropertyEntityUnderwritingModelsMaxPriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityUnderwritingModelsMaxPrice; export declare function SoSPropertyEntityUnderwritingModelsMaxPriceToJSON(json: any): SoSPropertyEntityUnderwritingModelsMaxPrice; export declare function SoSPropertyEntityUnderwritingModelsMaxPriceToJSONTyped(value?: SoSPropertyEntityUnderwritingModelsMaxPrice | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSPropertyEntityUnderwritingModelsMaxPrice.d.ts.map