UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

51 lines 1.57 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 SoSNeighborhoodEntityBase */ export interface SoSNeighborhoodEntityBase { /** * * @type {string} * @memberof SoSNeighborhoodEntityBase */ nid: string; /** * * @type {string} * @memberof SoSNeighborhoodEntityBase */ name?: string; /** * * @type {object} * @memberof SoSNeighborhoodEntityBase */ attomNeighborhoodCommunityData?: object; /** * * @type {number} * @memberof SoSNeighborhoodEntityBase */ transferTaxBuyerApportionment?: number; } /** * Check if a given object implements the SoSNeighborhoodEntityBase interface. */ export declare function instanceOfSoSNeighborhoodEntityBase(value: object): value is SoSNeighborhoodEntityBase; export declare function SoSNeighborhoodEntityBaseFromJSON(json: any): SoSNeighborhoodEntityBase; export declare function SoSNeighborhoodEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSNeighborhoodEntityBase; export declare function SoSNeighborhoodEntityBaseToJSON(json: any): SoSNeighborhoodEntityBase; export declare function SoSNeighborhoodEntityBaseToJSONTyped(value?: SoSNeighborhoodEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSNeighborhoodEntityBase.d.ts.map