Variable setChannelLogoRequestConst

setChannelLogoRequest: {
    properties: {
        channel: {
            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";
        };
        data: {
            type: "string";
        };
        sessionId: {
            description: "User's session ID";
            pattern: "^[a-zA-Z0-9+/=]{44}$";
            type: "string";
        };
    };
    required: readonly ["sessionId", "data", "channel"];
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        channel: {
            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";
        };
        data: {
            type: "string";
        };
        sessionId: {
            description: "User's session ID";
            pattern: "^[a-zA-Z0-9+/=]{44}$";
            type: "string";
        };
    }
    • Readonly channel: {
          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 data: {
          type: "string";
      }
      • 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"
  • Readonly required: readonly ["sessionId", "data", "channel"]
  • Readonly type: "object"

Generated using TypeDoc