Interface UriRequest

interface UriRequest {
    uri: `${string}://${string}`;
    identifier: string;
    method: "GET" | "POST";
    contentType: ContentType;
    data: ArrayBuffer;
    metadata: Record<string, string>;
}

Properties

uri: `${string}://${string}`
identifier: string
method: "GET" | "POST"
contentType: ContentType
metadata: Record<string, string>