@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
51 lines • 1.62 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 SoSInsuranceProviderEntityBase
*/
export interface SoSInsuranceProviderEntityBase {
/**
*
* @type {number}
* @memberof SoSInsuranceProviderEntityBase
*/
ipid: number;
/**
*
* @type {string}
* @memberof SoSInsuranceProviderEntityBase
*/
code?: string;
/**
*
* @type {string}
* @memberof SoSInsuranceProviderEntityBase
*/
name?: string;
/**
*
* @type {string}
* @memberof SoSInsuranceProviderEntityBase
*/
website?: string;
}
/**
* Check if a given object implements the SoSInsuranceProviderEntityBase interface.
*/
export declare function instanceOfSoSInsuranceProviderEntityBase(value: object): value is SoSInsuranceProviderEntityBase;
export declare function SoSInsuranceProviderEntityBaseFromJSON(json: any): SoSInsuranceProviderEntityBase;
export declare function SoSInsuranceProviderEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSInsuranceProviderEntityBase;
export declare function SoSInsuranceProviderEntityBaseToJSON(json: any): SoSInsuranceProviderEntityBase;
export declare function SoSInsuranceProviderEntityBaseToJSONTyped(value?: SoSInsuranceProviderEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSInsuranceProviderEntityBase.d.ts.map