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

com.easypost.model.BatchStatus Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package com.easypost.model;

public class BatchStatus {
	int created;
	int creationFailed;
	int postagePurchased;
	int postagePurchaseFailed;
	
	public int getCreated() {
		return created;
	}
	public void setCreated(int created) {
		this.created = created;
	}

	public int getCreationFailed() {
		return creationFailed;
	}
	public void setCreationFailed(int creationFailed) {
		this.creationFailed = creationFailed;
	}

	public int getPostagePurchased() {
		return postagePurchased;
	}
	public void setPostagePurchased(int postagePurchased) {
		this.postagePurchased = postagePurchased;
	}

	public int getPostagePurchaseFailed() {
		return postagePurchaseFailed;
	}
	public void setPostagePurchaseFailed(int postagePurchaseFailed) {
		this.postagePurchaseFailed = postagePurchaseFailed;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy