$SempRequest: {
    properties: {
        method: {
            description: "The HTTP method of the request which resulted in this response.";
            isRequired: true;
            type: "string";
        };
        uri: {
            description: "The URI of the request which resulted in this response.";
            type: "string";
        };
    };
} = ...

Type declaration

  • properties: {
        method: {
            description: "The HTTP method of the request which resulted in this response.";
            isRequired: true;
            type: "string";
        };
        uri: {
            description: "The URI of the request which resulted in this response.";
            type: "string";
        };
    }
    • method: {
          description: "The HTTP method of the request which resulted in this response.";
          isRequired: true;
          type: "string";
      }
      • description: "The HTTP method of the request which resulted in this response."
      • isRequired: true
      • type: "string"
    • uri: {
          description: "The URI of the request which resulted in this response.";
          type: "string";
      }
      • description: "The URI of the request which resulted in this response."
      • type: "string"