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

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

There is a newer version: 28.2.0
Show newest version
package com.stripe.model;

public class PackageDimensions extends StripeObject {
	Double height;
	Double length;
	Double weight;
	Double width;

	public Double getHeight() {
		return height;
	}

	public void setHeight(Double height) {
		this.height = height;
	}

	public Double getLength() {
		return length;
	}

	public void setLength(Double length) {
		this.length = length;
	}

	public Double getWeight() {
		return weight;
	}

	public void setWeight(Double weight) {
		this.weight = weight;
	}

	public Double getWidth() {
		return width;
	}

	public void setWidth(Double width) {
		this.width = width;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy