/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 UploadGuestAttemptFileResponseSchemaDataAttributes */ export interface UploadGuestAttemptFileResponseSchemaDataAttributes { /** * Presigned S3 PUT URL. Send the file body as the request body, with Content-Type set to the contentType you posted. * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ uploadUrl?: string; /** * S3 key in the attempt bucket. Reference this in answers[i].files[i].fileKey on the guest PATCH submission. * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ fileKey?: string; /** * * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ fileName?: string; /** * * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ contentType?: string; /** * * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ extension?: string; /** * * @type {string} * @memberof UploadGuestAttemptFileResponseSchemaDataAttributes */ questionId?: string | null; } /** * Check if a given object implements the UploadGuestAttemptFileResponseSchemaDataAttributes interface. */ export declare function instanceOfUploadGuestAttemptFileResponseSchemaDataAttributes(value: object): value is UploadGuestAttemptFileResponseSchemaDataAttributes; export declare function UploadGuestAttemptFileResponseSchemaDataAttributesFromJSON(json: any): UploadGuestAttemptFileResponseSchemaDataAttributes; export declare function UploadGuestAttemptFileResponseSchemaDataAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): UploadGuestAttemptFileResponseSchemaDataAttributes; export declare function UploadGuestAttemptFileResponseSchemaDataAttributesToJSON(json: any): UploadGuestAttemptFileResponseSchemaDataAttributes; export declare function UploadGuestAttemptFileResponseSchemaDataAttributesToJSONTyped(value?: UploadGuestAttemptFileResponseSchemaDataAttributes | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UploadGuestAttemptFileResponseSchemaDataAttributes.d.ts.map