com.ringcentral.definitions.BillingStatementFees Maven / Gradle / Ivy
package com.ringcentral.definitions;
public class BillingStatementFees {
/**
*
*/
public String description;
/**
* Format: double
*/
public Double amount;
/**
* Format: double
*/
public Double freeServiceCredit;
public BillingStatementFees description(String description) {
this.description = description;
return this;
}
public BillingStatementFees amount(Double amount) {
this.amount = amount;
return this;
}
public BillingStatementFees freeServiceCredit(Double freeServiceCredit) {
this.freeServiceCredit = freeServiceCredit;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy