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

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

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class BillingStatementCharges {
    /**
     *
     */
    public String description;
    /**
     * Format: double
     */
    public Double amount;
    /**
     *
     */
    public String feature;
    /**
     * Format: double
     */
    public Double freeServiceCredit;

    public BillingStatementCharges description(String description) {
        this.description = description;
        return this;
    }

    public BillingStatementCharges amount(Double amount) {
        this.amount = amount;
        return this;
    }

    public BillingStatementCharges feature(String feature) {
        this.feature = feature;
        return this;
    }

    public BillingStatementCharges freeServiceCredit(Double freeServiceCredit) {
        this.freeServiceCredit = freeServiceCredit;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy