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

no.difi.sdp.client2.internal.Billable Maven / Gradle / Ivy

There is a newer version: 7.0.0-RC2
Show newest version
package no.difi.sdp.client2.internal;

public class Billable {

    public final long billableBytes;
    public final T entity;

    public Billable(T entity, long billableBytes) {
        this.entity = entity;
        this.billableBytes = billableBytes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy