Interface UriRequest

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

Properties

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