jp.gopay.sdk.models.response.store.Store Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.response.store;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.common.StoreId;
import jp.gopay.sdk.models.response.GoPayResponse;
import jp.gopay.sdk.models.response.SimpleModel;
import java.util.Date;
import java.util.UUID;
public class Store extends GoPayResponse implements SimpleModel {
@SerializedName("id")
private UUID id;
@SerializedName("name")
private String name;
@SerializedName("created_on")
private Date createdOn;
public StoreId getId() {
return new StoreId(id);
}
public String getName() {
return name;
}
public Date getCreatedOn() {
return createdOn;
}
}