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

eleme.openapi.sdk.api.entity.activity.CreateCouponActivityResponse Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.activity;

import eleme.openapi.sdk.api.enumeration.activity.*;
import eleme.openapi.sdk.api.entity.activity.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class CreateCouponActivityResponse{

    /**
     * 行业玩法实例id
     */
    private Long ePlayInstanceId;
    public Long getEPlayInstanceId() {
        return ePlayInstanceId;
    }
    public void setEPlayInstanceId(Long ePlayInstanceId) {
        this.ePlayInstanceId = ePlayInstanceId;
    }
    
    /**
     * 是否正常返回
     */
    private boolean success;
    public boolean getSuccess() {
        return success;
    }
    public void setSuccess(boolean success) {
        this.success = success;
    }
    
    /**
     * 错误信息,仅当错误的时候存在
     */
    private String message;
    public String getMessage() {
        return message;
    }
    public void setMessage(String message) {
        this.message = message;
    }
    
    /**
     * 错误编码
     */
    private String code;
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    
    /**
     * 是否可重试
     */
    private boolean canRetry;
    public boolean getCanRetry() {
        return canRetry;
    }
    public void setCanRetry(boolean canRetry) {
        this.canRetry = canRetry;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy