All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.com.antcloud.api.riskplus.v1_0.request.CallbackSmsUpRequest Maven / Gradle / Ivy

//
//  Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
//  Licensed 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 cn.com.antcloud.api.riskplus.v1_0.request;

import cn.com.antcloud.api.product.AntCloudProdRequest;
import cn.com.antcloud.api.riskplus.v1_0.response.CallbackSmsUpResponse;
import java.lang.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;

/**
 * 营销盾上行短信回调接口 */
public class CallbackSmsUpRequest extends AntCloudProdRequest {
  @NotNull
  private String type;

  @NotNull
  private String phoneNumber;

  @NotNull
  private String sendTime;

  @NotNull
  private String content;

  @NotNull
  private String signName;

  @NotNull
  private String appKey;

  private String destCode;

  @NotNull
  private Long sequenceId;

  public CallbackSmsUpRequest(String productInstanceId) {
    super("riskplus.umkt.sms.up.callback", "1.0", "Java-SDK-20230828", productInstanceId);
  }

  public CallbackSmsUpRequest() {
    super("riskplus.umkt.sms.up.callback", "1.0", null);
    this.setSdkVersion("Java-SDK-20230828");
  }

  /**
   * 回执类型 */
  public String getType() {
    return this.type;
  }

  /**
   * 回执类型 */
  public void setType(String type) {
    this.type = type;
  }

  /**
   * 手机号码 */
  public String getPhoneNumber() {
    return this.phoneNumber;
  }

  /**
   * 手机号码 */
  public void setPhoneNumber(String phoneNumber) {
    this.phoneNumber = phoneNumber;
  }

  /**
   * 发送时间 */
  public String getSendTime() {
    return this.sendTime;
  }

  /**
   * 发送时间 */
  public void setSendTime(String sendTime) {
    this.sendTime = sendTime;
  }

  /**
   * 发送内容 */
  public String getContent() {
    return this.content;
  }

  /**
   * 发送内容 */
  public void setContent(String content) {
    this.content = content;
  }

  /**
   * 签名信息 */
  public String getSignName() {
    return this.signName;
  }

  /**
   * 签名信息 */
  public void setSignName(String signName) {
    this.signName = signName;
  }

  /**
   * 签名对应的客户ak */
  public String getAppKey() {
    return this.appKey;
  }

  /**
   * 签名对应的客户ak */
  public void setAppKey(String appKey) {
    this.appKey = appKey;
  }

  /**
   * 上行短信扩展号码 */
  public String getDestCode() {
    return this.destCode;
  }

  /**
   * 上行短信扩展号码 */
  public void setDestCode(String destCode) {
    this.destCode = destCode;
  }

  /**
   * 学历噩耗 */
  public Long getSequenceId() {
    return this.sequenceId;
  }

  /**
   * 学历噩耗 */
  public void setSequenceId(Long sequenceId) {
    this.sequenceId = sequenceId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy