Variable getChannelSensitivesRequestConst

getChannelSensitivesRequest: {
    properties: {
        channelId: {
            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";
        };
    };
    required: readonly ["sessionId", "channelId"];
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        channelId: {
            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";
        };
    }
    • Readonly channelId: {
          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"
  • Readonly required: readonly ["sessionId", "channelId"]
  • Readonly type: "object"

Generated using TypeDoc