blob: f34e3432973d7511ab608dae73e02fbe11423fc2 [file] [log] [blame]
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace RocketMQ.Eventbridge.SDK.Models
{
public class GetEventBusResponseBody : TeaModel {
/// <summary>
/// <para>The response code. The value Success indicates that the request is successful.</para>
///
/// <b>Example:</b>
/// <para>Success</para>
/// </summary>
[NameInMap("code")]
[Validation(Required=false)]
public string Code { get; set; }
/// <summary>
/// <para>The timestamp that indicates when the event bus was created.</para>
///
/// <b>Example:</b>
/// <para>1641781825000</para>
/// </summary>
[NameInMap("createTimestamp")]
[Validation(Required=false)]
public long? CreateTimestamp { get; set; }
/// <summary>
/// <para>The description of the event bus.</para>
///
/// <b>Example:</b>
/// <para>demo</para>
/// </summary>
[NameInMap("description")]
[Validation(Required=false)]
public string Description { get; set; }
/// <summary>
/// <para>The name of the event bus.</para>
///
/// <b>Example:</b>
/// <para>MyEventBus</para>
/// </summary>
[NameInMap("eventBusName")]
[Validation(Required=false)]
public string EventBusName { get; set; }
/// <summary>
/// <para>The error message that is returned if the request failed.</para>
///
/// <b>Example:</b>
/// <para>EventBusNotExist</para>
/// </summary>
[NameInMap("message")]
[Validation(Required=false)]
public string Message { get; set; }
/// <summary>
/// <para>The request ID.</para>
///
/// <b>Example:</b>
/// <para>d5bfc188-4452-4ba7-b73a-a9005e522439</para>
/// </summary>
[NameInMap("requestId")]
[Validation(Required=false)]
public string RequestId { get; set; }
}
}