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

com.larksuite.oapi.service.application.v1.model.OrderPaidEventData Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.application.v1.model;

import com.google.gson.annotations.SerializedName;
public class OrderPaidEventData {
    @SerializedName("app_id")
    private String appId;
    @SerializedName("tenant_key")
    private String tenantKey;
    @SerializedName("type")
    private String type;
    @SerializedName("order_id")
    private String orderId;
    @SerializedName("price_plan_id")
    private String pricePlanId;
    @SerializedName("price_plan_type")
    private String pricePlanType;
    @SerializedName("seats")
    private Integer seats;
    @SerializedName("buy_count")
    private Integer buyCount;
    @SerializedName("create_time")
    private String createTime;
    @SerializedName("pay_time")
    private String payTime;
    @SerializedName("buy_type")
    private String buyType;
    @SerializedName("src_order_id")
    private String srcOrderId;
    @SerializedName("order_pay_price")
    private Integer orderPayPrice;

    public String getAppId() {
        return this.appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getTenantKey() {
        return this.tenantKey;
    }

    public void setTenantKey(String tenantKey) {
        this.tenantKey = tenantKey;
    }

    public String getType() {
        return this.type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getOrderId() {
        return this.orderId;
    }

    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }

    public String getPricePlanId() {
        return this.pricePlanId;
    }

    public void setPricePlanId(String pricePlanId) {
        this.pricePlanId = pricePlanId;
    }

    public String getPricePlanType() {
        return this.pricePlanType;
    }

    public void setPricePlanType(String pricePlanType) {
        this.pricePlanType = pricePlanType;
    }

    public Integer getSeats() {
        return this.seats;
    }

    public void setSeats(Integer seats) {
        this.seats = seats;
    }

    public Integer getBuyCount() {
        return this.buyCount;
    }

    public void setBuyCount(Integer buyCount) {
        this.buyCount = buyCount;
    }

    public String getCreateTime() {
        return this.createTime;
    }

    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }

    public String getPayTime() {
        return this.payTime;
    }

    public void setPayTime(String payTime) {
        this.payTime = payTime;
    }

    public String getBuyType() {
        return this.buyType;
    }

    public void setBuyType(String buyType) {
        this.buyType = buyType;
    }

    public String getSrcOrderId() {
        return this.srcOrderId;
    }

    public void setSrcOrderId(String srcOrderId) {
        this.srcOrderId = srcOrderId;
    }

    public Integer getOrderPayPrice() {
        return this.orderPayPrice;
    }

    public void setOrderPayPrice(Integer orderPayPrice) {
        this.orderPayPrice = orderPayPrice;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy