Variable authorizeImageUploadResponseConst

authorizeImageUploadResponse: {
    description: "Either the information you need to upload an image, or any errors encountered";
    properties: {
        error: {
            type: "string";
        };
        id: {
            description: "Cloudflare Images draft upload ID";
            type: "string";
        };
        url: {
            description: "URL to upload your image to";
            type: "string";
        };
    };
    required: readonly [];
    type: "object";
} = ...

Type declaration

  • Readonly description: "Either the information you need to upload an image, or any errors encountered"
  • Readonly properties: {
        error: {
            type: "string";
        };
        id: {
            description: "Cloudflare Images draft upload ID";
            type: "string";
        };
        url: {
            description: "URL to upload your image to";
            type: "string";
        };
    }
    • Readonly error: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly id: {
          description: "Cloudflare Images draft upload ID";
          type: "string";
      }
      • Readonly description: "Cloudflare Images draft upload ID"
      • Readonly type: "string"
    • Readonly url: {
          description: "URL to upload your image to";
          type: "string";
      }
      • Readonly description: "URL to upload your image to"
      • Readonly type: "string"
  • Readonly required: readonly []
  • Readonly type: "object"

Generated using TypeDoc