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

com.wechat.pay.java.service.retailstore.model.ApplyActivityResponse Maven / Gradle / Ivy

There is a newer version: 0.2.14
Show newest version
// Copyright 2021 Tencent Inc. All rights reserved.
//
// 营销加价购对外API
//
// 指定服务商可通过该接口报名加价购活动、查询某个区域内的加价购活动列表、锁定加价活动购资格以及解锁加价购活动资格。
//
// API version: 1.3.0

// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.

package com.wechat.pay.java.service.retailstore.model;

import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;

import com.google.gson.annotations.SerializedName;
import java.util.List;

/** ApplyActivityResponse */
public class ApplyActivityResponse {
  /** 返回结果文案 说明:返回结果文案 */
  @SerializedName("return_message")
  private String returnMessage;
  /** 失败的报名记录 说明:失败的报名记录 */
  @SerializedName("failed_apply_infos")
  private List failedApplyInfos;
  /** 成功的报名记录 说明:成功的报名记录 */
  @SerializedName("succeed_apply_infos")
  private List succeedApplyInfos;

  public String getReturnMessage() {
    return returnMessage;
  }

  public void setReturnMessage(String returnMessage) {
    this.returnMessage = returnMessage;
  }

  public List getFailedApplyInfos() {
    return failedApplyInfos;
  }

  public void setFailedApplyInfos(List failedApplyInfos) {
    this.failedApplyInfos = failedApplyInfos;
  }

  public List getSucceedApplyInfos() {
    return succeedApplyInfos;
  }

  public void setSucceedApplyInfos(List succeedApplyInfos) {
    this.succeedApplyInfos = succeedApplyInfos;
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ApplyActivityResponse {\n");
    sb.append("    returnMessage: ").append(toIndentedString(returnMessage)).append("\n");
    sb.append("    failedApplyInfos: ").append(toIndentedString(failedApplyInfos)).append("\n");
    sb.append("    succeedApplyInfos: ").append(toIndentedString(succeedApplyInfos)).append("\n");
    sb.append("}");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy