Variable updateChannelRequestConst

updateChannelRequest: {
    properties: {
        bgColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
        bio: {
            pattern: "^.{0,1024}$";
            type: "string";
        };
        fgColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
        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";
        };
        owner: {
            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";
        };
        sessionId: {
            description: "User's session ID";
            pattern: "^[a-zA-Z0-9+/=]{44}$";
            type: "string";
        };
        tagline: {
            maxLength: 255;
            minLength: 0;
            type: "string";
        };
        tvColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
    };
    required: readonly ["sessionId", "id"];
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        bgColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
        bio: {
            pattern: "^.{0,1024}$";
            type: "string";
        };
        fgColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
        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";
        };
        owner: {
            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";
        };
        sessionId: {
            description: "User's session ID";
            pattern: "^[a-zA-Z0-9+/=]{44}$";
            type: "string";
        };
        tagline: {
            maxLength: 255;
            minLength: 0;
            type: "string";
        };
        tvColor: {
            pattern: "^[0-9A-Fa-f]{6}$";
            type: "string";
        };
    }
    • Readonly bgColor: {
          pattern: "^[0-9A-Fa-f]{6}$";
          type: "string";
      }
      • Readonly pattern: "^[0-9A-Fa-f]{6}$"
      • Readonly type: "string"
    • bio: {
          pattern: "^.{0,1024}$";
          type: "string";
      }
      • Readonly pattern: "^.{0,1024}$"
      • Readonly type: "string"
    • Readonly fgColor: {
          pattern: "^[0-9A-Fa-f]{6}$";
          type: "string";
      }
      • Readonly pattern: "^[0-9A-Fa-f]{6}$"
      • Readonly 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 owner: {
          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"
    • sessionId: {
          description: "User's session ID";
          pattern: "^[a-zA-Z0-9+/=]{44}$";
          type: "string";
      }
      • Readonly description: "User's session ID"
      • Readonly pattern: "^[a-zA-Z0-9+/=]{44}$"
      • Readonly type: "string"
    • tagline: {
          maxLength: 255;
          minLength: 0;
          type: "string";
      }
      • Readonly maxLength: 255
      • Readonly minLength: 0
      • Readonly type: "string"
    • Readonly tvColor: {
          pattern: "^[0-9A-Fa-f]{6}$";
          type: "string";
      }
      • Readonly pattern: "^[0-9A-Fa-f]{6}$"
      • Readonly type: "string"
  • Readonly required: readonly ["sessionId", "id"]
  • Readonly type: "object"

Generated using TypeDoc