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

com.ringcentral.definitions.BillingStatementFees Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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