UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

57 lines 1.9 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 V4AirtableListCommentsAttachmentDto */ export interface V4AirtableListCommentsAttachmentDto { /** * File upload ID * @type {number} * @memberof V4AirtableListCommentsAttachmentDto */ fuid: number; /** * File name * @type {string} * @memberof V4AirtableListCommentsAttachmentDto */ name: string; /** * File size in bytes * @type {number} * @memberof V4AirtableListCommentsAttachmentDto */ size: number; /** * MIME type * @type {string} * @memberof V4AirtableListCommentsAttachmentDto */ mimeType: string; /** * 7-day signed S3 URL * @type {string} * @memberof V4AirtableListCommentsAttachmentDto */ signedUrl: string; } /** * Check if a given object implements the V4AirtableListCommentsAttachmentDto interface. */ export declare function instanceOfV4AirtableListCommentsAttachmentDto(value: object): value is V4AirtableListCommentsAttachmentDto; export declare function V4AirtableListCommentsAttachmentDtoFromJSON(json: any): V4AirtableListCommentsAttachmentDto; export declare function V4AirtableListCommentsAttachmentDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableListCommentsAttachmentDto; export declare function V4AirtableListCommentsAttachmentDtoToJSON(json: any): V4AirtableListCommentsAttachmentDto; export declare function V4AirtableListCommentsAttachmentDtoToJSONTyped(value?: V4AirtableListCommentsAttachmentDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4AirtableListCommentsAttachmentDto.d.ts.map