UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

69 lines 1.85 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 SoSWalkthroughEntityBase */ export interface SoSWalkthroughEntityBase { /** * * @type {number} * @memberof SoSWalkthroughEntityBase */ wid: number; /** * * @type {string} * @memberof SoSWalkthroughEntityBase */ pid?: string; /** * * @type {string} * @memberof SoSWalkthroughEntityBase */ status?: string; /** * * @type {Date} * @memberof SoSWalkthroughEntityBase */ walkthroughDate?: string; /** * * @type {string} * @memberof SoSWalkthroughEntityBase */ renoPersonId?: string; /** * * @type {string} * @memberof SoSWalkthroughEntityBase */ assignedPocId?: string; /** * * @type {string} * @memberof SoSWalkthroughEntityBase */ notes?: string; } /** * Check if a given object implements the SoSWalkthroughEntityBase interface. */ export declare function instanceOfSoSWalkthroughEntityBase(value: object): value is SoSWalkthroughEntityBase; export declare function SoSWalkthroughEntityBaseFromJSON(json: any): SoSWalkthroughEntityBase; export declare function SoSWalkthroughEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSWalkthroughEntityBase; export declare function SoSWalkthroughEntityBaseToJSON(json: any): SoSWalkthroughEntityBase; export declare function SoSWalkthroughEntityBaseToJSONTyped(value?: SoSWalkthroughEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSWalkthroughEntityBase.d.ts.map