blob: 670167963b479afb5575b18c92828a175568bb97 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rocketmq.eventbridge.domain.model.apidestination;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import org.apache.rocketmq.eventbridge.domain.model.apidestination.parameter.HttpApiParameters;
import java.io.Serializable;
import java.util.Date;
@EqualsAndHashCode
@ToString
@Setter
@Getter
public class ApiDestinationDTO implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table event_api_destination
*
* @mbggenerated
*/
private static final long serialVersionUID = 1L;
private String accountId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.name
*
* @mbggenerated
*/
private String name;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.protocol
*
* @mbggenerated
*/
private String protocol;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.connection_name
*
* @mbggenerated
*/
private String connectionName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.invocation_rate_limit_per_second
*
* @mbggenerated
*/
private Integer invocationRateLimitPerSecond;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.description
*
* @mbggenerated
*/
private String description;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.gmt_create
*
* @mbggenerated
*/
private Date gmtCreate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.gmt_modify
*
* @mbggenerated
*/
private Date gmtModify;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column event_api_destination.api_params
*
* @mbggenerated
*/
private HttpApiParameters apiParams;
}