Variable getChannelRequestConst

getChannelRequest: {
    properties: {
        id: {
            pattern: "^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$";
            type: "string";
        };
        name: {
            pattern: "^[a-zA-Z0-9]{3,30}$";
            type: "string";
        };
    };
    required: readonly [];
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        id: {
            pattern: "^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$";
            type: "string";
        };
        name: {
            pattern: "^[a-zA-Z0-9]{3,30}$";
            type: "string";
        };
    }
    • Readonly id: {
          pattern: "^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$";
          type: "string";
      }
      • Readonly pattern: "^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$"
      • Readonly type: "string"
    • Readonly name: {
          pattern: "^[a-zA-Z0-9]{3,30}$";
          type: "string";
      }
      • Readonly pattern: "^[a-zA-Z0-9]{3,30}$"
      • Readonly type: "string"
  • Readonly required: readonly []
  • Readonly type: "object"

Generated using TypeDoc