UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.66 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 V4LeadUserRelationsCreateRelLeadUserBodyDto */ export interface V4LeadUserRelationsCreateRelLeadUserBodyDto { /** * Lead ID to associate with user * @type {number} * @memberof V4LeadUserRelationsCreateRelLeadUserBodyDto */ leadId: number; /** * User ID to associate with lead * @type {string} * @memberof V4LeadUserRelationsCreateRelLeadUserBodyDto */ userId: string; } /** * Check if a given object implements the V4LeadUserRelationsCreateRelLeadUserBodyDto interface. */ export declare function instanceOfV4LeadUserRelationsCreateRelLeadUserBodyDto(value: object): value is V4LeadUserRelationsCreateRelLeadUserBodyDto; export declare function V4LeadUserRelationsCreateRelLeadUserBodyDtoFromJSON(json: any): V4LeadUserRelationsCreateRelLeadUserBodyDto; export declare function V4LeadUserRelationsCreateRelLeadUserBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadUserRelationsCreateRelLeadUserBodyDto; export declare function V4LeadUserRelationsCreateRelLeadUserBodyDtoToJSON(json: any): V4LeadUserRelationsCreateRelLeadUserBodyDto; export declare function V4LeadUserRelationsCreateRelLeadUserBodyDtoToJSONTyped(value?: V4LeadUserRelationsCreateRelLeadUserBodyDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeadUserRelationsCreateRelLeadUserBodyDto.d.ts.map