
com.mailosaur.models.UsageAccountLimit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailosaur-java Show documentation
Show all versions of mailosaur-java Show documentation
Mailosaur Java Bindings for Email Test Automation
package com.mailosaur.models;
import com.google.api.client.util.Key;
/**
* The detail of an individual account limit.
*/
public class UsageAccountLimit {
/**
* The limit for your account.
*/
@Key
private Integer limit;
/**
* Your account usage so far.
*/
@Key
private Integer current;
/**
* Gets the limit for your account.
*
* @return The limit for your account.
*/
public Integer limit() {
return this.limit;
}
/**
* Gets your account usage so far.
*
* @return Your account usage so far.
*/
public Integer current() {
return this.current;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy