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

jp.webpay.model.EntityList Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package jp.webpay.model;

import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;

import java.util.List;

@Getter
@Setter
public class EntityList {
    private String object;
    private String url;
    private Integer count;

    // To set data by JSONIC, each model's list class should define setter
    @Setter(AccessLevel.NONE)
    protected List data;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy