com.recurly.v3.requests.ShippingFeeCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
The official Java client for Recurly's V3 API.
/**
* This file is automatically created by Recurly's OpenAPI generation process and thus any edits you
* make by hand will be lost. If you wish to make a change to this file, please create a Github
* issue explaining the changes you need and we will usher them to the appropriate places.
*/
package com.recurly.v3.requests;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.recurly.v3.Request;
import com.recurly.v3.resources.*;
import java.math.BigDecimal;
public class ShippingFeeCreate extends Request {
/** This is priced in the purchase's currency. */
@SerializedName("amount")
@Expose
private BigDecimal amount;
/**
* The code of the shipping method used to deliver the purchase. If `method_id` and `method_code`
* are both present, `method_id` will be used.
*/
@SerializedName("method_code")
@Expose
private String methodCode;
/**
* The id of the shipping method used to deliver the purchase. If `method_id` and `method_code`
* are both present, `method_id` will be used.
*/
@SerializedName("method_id")
@Expose
private String methodId;
/** This is priced in the purchase's currency. */
public BigDecimal getAmount() {
return this.amount;
}
/** @param amount This is priced in the purchase's currency. */
public void setAmount(final BigDecimal amount) {
this.amount = amount;
}
/**
* The code of the shipping method used to deliver the purchase. If `method_id` and `method_code`
* are both present, `method_id` will be used.
*/
public String getMethodCode() {
return this.methodCode;
}
/**
* @param methodCode The code of the shipping method used to deliver the purchase. If `method_id`
* and `method_code` are both present, `method_id` will be used.
*/
public void setMethodCode(final String methodCode) {
this.methodCode = methodCode;
}
/**
* The id of the shipping method used to deliver the purchase. If `method_id` and `method_code`
* are both present, `method_id` will be used.
*/
public String getMethodId() {
return this.methodId;
}
/**
* @param methodId The id of the shipping method used to deliver the purchase. If `method_id` and
* `method_code` are both present, `method_id` will be used.
*/
public void setMethodId(final String methodId) {
this.methodId = methodId;
}
}