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

com.stripe.model.ShippingMethod Maven / Gradle / Ivy

There is a newer version: 26.13.0-beta.1
Show newest version
package com.stripe.model;

public class ShippingMethod extends StripeObject {
	String id;
	Long amount;
	String currency;
	String description;

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public Long getAmount() {
		return amount;
	}

	public void setAmount(Long amount) {
		this.amount = amount;
	}

	public String getCurrency() {
		return currency;
	}

	public void setCurrency(String currency) {
		this.currency = currency;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy