/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * filename: "video.mp4", * folder: "example", * expiry: 1735689600, * method: "put" * } */ export interface SignaturesCreateRequest { filename: string; folder?: string; expiry?: number; method?: SignaturesCreateRequest.Method; } export declare namespace SignaturesCreateRequest { type Method = "get" | "put"; const Method: { readonly Get: "get"; readonly Put: "put"; }; }