UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.87 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 V4InspectionUserRelationsCreateRelInspectionUserBodyDto */ export interface V4InspectionUserRelationsCreateRelInspectionUserBodyDto { /** * Inspection ID to associate with user * @type {number} * @memberof V4InspectionUserRelationsCreateRelInspectionUserBodyDto */ inspectionId: number; /** * User ID to associate with inspection * @type {string} * @memberof V4InspectionUserRelationsCreateRelInspectionUserBodyDto */ userId: string; } /** * Check if a given object implements the V4InspectionUserRelationsCreateRelInspectionUserBodyDto interface. */ export declare function instanceOfV4InspectionUserRelationsCreateRelInspectionUserBodyDto(value: object): value is V4InspectionUserRelationsCreateRelInspectionUserBodyDto; export declare function V4InspectionUserRelationsCreateRelInspectionUserBodyDtoFromJSON(json: any): V4InspectionUserRelationsCreateRelInspectionUserBodyDto; export declare function V4InspectionUserRelationsCreateRelInspectionUserBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4InspectionUserRelationsCreateRelInspectionUserBodyDto; export declare function V4InspectionUserRelationsCreateRelInspectionUserBodyDtoToJSON(json: any): V4InspectionUserRelationsCreateRelInspectionUserBodyDto; export declare function V4InspectionUserRelationsCreateRelInspectionUserBodyDtoToJSONTyped(value?: V4InspectionUserRelationsCreateRelInspectionUserBodyDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4InspectionUserRelationsCreateRelInspectionUserBodyDto.d.ts.map