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

cn.com.antcloud.api.riskplus.v1_0.model.CertificateInfo 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.model;

import java.lang.String;
import javax.validation.constraints.NotNull;

/**
 * 结清证明响应实体 */
public class CertificateInfo {
  @NotNull
  private String status;

  private String relationNo;

  private String certificateUrl;

  private String certificateBase64;

  private String message;

  /**
   * 结清证明开具结果,0:有结清证明、1:无结清证明、2:开具中、3:暂不支持开具 */
  public String getStatus() {
    return this.status;
  }

  /**
   * 结清证明开具结果,0:有结清证明、1:无结清证明、2:开具中、3:暂不支持开具 */
  public void setStatus(String status) {
    this.status = status;
  }

  /**
   * 用信申请订单号 */
  public String getRelationNo() {
    return this.relationNo;
  }

  /**
   * 用信申请订单号 */
  public void setRelationNo(String relationNo) {
    this.relationNo = relationNo;
  }

  /**
   * 结清证明url */
  public String getCertificateUrl() {
    return this.certificateUrl;
  }

  /**
   * 结清证明url */
  public void setCertificateUrl(String certificateUrl) {
    this.certificateUrl = certificateUrl;
  }

  /**
   * 结清证明文件Base64 */
  public String getCertificateBase64() {
    return this.certificateBase64;
  }

  /**
   * 结清证明文件Base64 */
  public void setCertificateBase64(String certificateBase64) {
    this.certificateBase64 = certificateBase64;
  }

  /**
   * 说明 */
  public String getMessage() {
    return this.message;
  }

  /**
   * 说明 */
  public void setMessage(String message) {
    this.message = message;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy