UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

33 lines 1.41 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 V4FileUploadsGetSignedUrlResponseDto */ export interface V4FileUploadsGetSignedUrlResponseDto { /** * S3 signed URL for accessing the file * @type {string} * @memberof V4FileUploadsGetSignedUrlResponseDto */ signedUrl: string; } /** * Check if a given object implements the V4FileUploadsGetSignedUrlResponseDto interface. */ export declare function instanceOfV4FileUploadsGetSignedUrlResponseDto(value: object): value is V4FileUploadsGetSignedUrlResponseDto; export declare function V4FileUploadsGetSignedUrlResponseDtoFromJSON(json: any): V4FileUploadsGetSignedUrlResponseDto; export declare function V4FileUploadsGetSignedUrlResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4FileUploadsGetSignedUrlResponseDto; export declare function V4FileUploadsGetSignedUrlResponseDtoToJSON(json: any): V4FileUploadsGetSignedUrlResponseDto; export declare function V4FileUploadsGetSignedUrlResponseDtoToJSONTyped(value?: V4FileUploadsGetSignedUrlResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4FileUploadsGetSignedUrlResponseDto.d.ts.map