UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.42 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 V4LeadsUpdateLeadResponseDto */ export interface V4LeadsUpdateLeadResponseDto { /** * Status of the update operation * @type {string} * @memberof V4LeadsUpdateLeadResponseDto */ message?: string; /** * The ID of the updated lead * @type {number} * @memberof V4LeadsUpdateLeadResponseDto */ leadId: number; } /** * Check if a given object implements the V4LeadsUpdateLeadResponseDto interface. */ export declare function instanceOfV4LeadsUpdateLeadResponseDto(value: object): value is V4LeadsUpdateLeadResponseDto; export declare function V4LeadsUpdateLeadResponseDtoFromJSON(json: any): V4LeadsUpdateLeadResponseDto; export declare function V4LeadsUpdateLeadResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadsUpdateLeadResponseDto; export declare function V4LeadsUpdateLeadResponseDtoToJSON(json: any): V4LeadsUpdateLeadResponseDto; export declare function V4LeadsUpdateLeadResponseDtoToJSONTyped(value?: V4LeadsUpdateLeadResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeadsUpdateLeadResponseDto.d.ts.map