@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
81 lines • 2.33 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 SoSOwnerEntityBase
*/
export interface SoSOwnerEntityBase {
/**
* Unique owner identifier
* @type {number}
* @memberof SoSOwnerEntityBase
*/
oid: number;
/**
* Owner name
* @type {string}
* @memberof SoSOwnerEntityBase
*/
name: string;
/**
* Minimum acquisition fee for Simply
* @type {number}
* @memberof SoSOwnerEntityBase
*/
simplyMinAcquisitionFee?: number;
/**
* Maximum acquisition fee for Simply
* @type {number}
* @memberof SoSOwnerEntityBase
*/
simplyMaxAcquisitionFee?: number;
/**
* Required startup reserves per unit
* @type {number}
* @memberof SoSOwnerEntityBase
*/
requiredStartupReservesPerUnit?: number;
/**
* Insurance percentage rate
* @type {number}
* @memberof SoSOwnerEntityBase
*/
insurancePercentage?: number;
/**
* Simply acquisition percentage rate
* @type {number}
* @memberof SoSOwnerEntityBase
*/
simplyAcquisitionPercentage: number;
/**
* Simply renovation management fee percentage
* @type {number}
* @memberof SoSOwnerEntityBase
*/
simplyRenovationManagementFeePercentage: number;
/**
* Organization ID that this owner belongs to
* @type {number}
* @memberof SoSOwnerEntityBase
*/
organizationId?: number;
}
/**
* Check if a given object implements the SoSOwnerEntityBase interface.
*/
export declare function instanceOfSoSOwnerEntityBase(value: object): value is SoSOwnerEntityBase;
export declare function SoSOwnerEntityBaseFromJSON(json: any): SoSOwnerEntityBase;
export declare function SoSOwnerEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSOwnerEntityBase;
export declare function SoSOwnerEntityBaseToJSON(json: any): SoSOwnerEntityBase;
export declare function SoSOwnerEntityBaseToJSONTyped(value?: SoSOwnerEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSOwnerEntityBase.d.ts.map