![JAR search and dependency download from the Maven repository](/logo.png)
com.dft.api.shopify.model.TotalShippingPriceSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shopify-admin-rest Show documentation
Show all versions of shopify-admin-rest Show documentation
Shopify Admin REST API using JDK 11 and Reactive Programming
The newest version!
package com.dft.api.shopify.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class TotalShippingPriceSet {
@XmlElement(name = "shop_money")
private ShopMoney shopMoney;
@XmlElement(name = "presentment_money")
private PresentmentMoney presentmentMoney;
public ShopMoney getShopMoney() {
return shopMoney;
}
public void setShopMoney(ShopMoney shopMoney) {
this.shopMoney = shopMoney;
}
public PresentmentMoney getPresentmentMoney() {
return presentmentMoney;
}
public void setPresentmentMoney(PresentmentMoney presentmentMoney) {
this.presentmentMoney = presentmentMoney;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy