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

com.aeontronix.anypointsdk.cloudhub.CHApplicationWorkers Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
package com.aeontronix.anypointsdk.cloudhub;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CHApplicationWorkers {
    @JsonProperty("amount")
    private int amount;
    @JsonProperty("remainingOrgWorkers")
    private double remainingOrgWorkers;
    @JsonProperty("totalOrgWorkers")
    private double totalOrgWorkers;
    @JsonProperty("type")
    private CHApplicationType type;
    @JsonProperty("recentStatistics")
    private CHApplicationStatistics recentStatistics;

    public void setAmount(int amount) {
        this.amount = amount;
    }

    public int getAmount() {
        return amount;
    }

    public void setRemainingOrgWorkers(double remainingOrgWorkers) {
        this.remainingOrgWorkers = remainingOrgWorkers;
    }

    public double getRemainingOrgWorkers() {
        return remainingOrgWorkers;
    }

    public void setTotalOrgWorkers(double totalOrgWorkers) {
        this.totalOrgWorkers = totalOrgWorkers;
    }

    public double getTotalOrgWorkers() {
        return totalOrgWorkers;
    }

    public void setType(CHApplicationType type) {
        this.type = type;
    }

    public CHApplicationType getType() {
        return type;
    }

    public CHApplicationStatistics getRecentStatistics() {
        return recentStatistics;
    }

    public void setRecentStatistics(CHApplicationStatistics recentStatistics) {
        this.recentStatistics = recentStatistics;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy