UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

75 lines 2.05 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 SoSInsurancePolicyEntityBase */ export interface SoSInsurancePolicyEntityBase { /** * * @type {number} * @memberof SoSInsurancePolicyEntityBase */ ipoid: number; /** * * @type {string} * @memberof SoSInsurancePolicyEntityBase */ number?: string; /** * * @type {Date} * @memberof SoSInsurancePolicyEntityBase */ effectiveDate?: string; /** * * @type {Array<number>} * @memberof SoSInsurancePolicyEntityBase */ documentIds?: Array<number>; /** * * @type {number} * @memberof SoSInsurancePolicyEntityBase */ cost?: number; /** * * @type {string} * @memberof SoSInsurancePolicyEntityBase */ pid?: string; /** * * @type {number} * @memberof SoSInsurancePolicyEntityBase */ ipid?: number; /** * * @type {string} * @memberof SoSInsurancePolicyEntityBase */ status?: string; } /** * Check if a given object implements the SoSInsurancePolicyEntityBase interface. */ export declare function instanceOfSoSInsurancePolicyEntityBase(value: object): value is SoSInsurancePolicyEntityBase; export declare function SoSInsurancePolicyEntityBaseFromJSON(json: any): SoSInsurancePolicyEntityBase; export declare function SoSInsurancePolicyEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSInsurancePolicyEntityBase; export declare function SoSInsurancePolicyEntityBaseToJSON(json: any): SoSInsurancePolicyEntityBase; export declare function SoSInsurancePolicyEntityBaseToJSONTyped(value?: SoSInsurancePolicyEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSInsurancePolicyEntityBase.d.ts.map