com.notronix.etsy.impl.users.model.EtsyGetMeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JEtsy Show documentation
Show all versions of JEtsy Show documentation
A Java implementation of a Java version of the Etsy API
package com.notronix.etsy.impl.users.model;
import com.google.gson.annotations.SerializedName;
import com.notronix.etsy.api.users.model.GetMeResponse;
public class EtsyGetMeResponse implements GetMeResponse
{
@SerializedName("user_id")
private Long userId;
@SerializedName("shop_id")
private Long shopId;
@Override
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
@Override
public Long getShopId() {
return shopId;
}
public void setShopId(Long shopId) {
this.shopId = shopId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy