com.microsoft.graph.models.PrintUsage Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.Entity;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Print Usage.
*/
public class PrintUsage extends Entity implements IJsonBackedObject {
/**
* The Black And White Page Count.
*
*/
@SerializedName(value = "blackAndWhitePageCount", alternate = {"BlackAndWhitePageCount"})
@Expose
@Nullable
public Long blackAndWhitePageCount;
/**
* The Color Page Count.
*
*/
@SerializedName(value = "colorPageCount", alternate = {"ColorPageCount"})
@Expose
@Nullable
public Long colorPageCount;
/**
* The Completed Black And White Job Count.
*
*/
@SerializedName(value = "completedBlackAndWhiteJobCount", alternate = {"CompletedBlackAndWhiteJobCount"})
@Expose
@Nullable
public Long completedBlackAndWhiteJobCount;
/**
* The Completed Color Job Count.
*
*/
@SerializedName(value = "completedColorJobCount", alternate = {"CompletedColorJobCount"})
@Expose
@Nullable
public Long completedColorJobCount;
/**
* The Completed Job Count.
*
*/
@SerializedName(value = "completedJobCount", alternate = {"CompletedJobCount"})
@Expose
@Nullable
public Long completedJobCount;
/**
* The Double Sided Sheet Count.
*
*/
@SerializedName(value = "doubleSidedSheetCount", alternate = {"DoubleSidedSheetCount"})
@Expose
@Nullable
public Long doubleSidedSheetCount;
/**
* The Incomplete Job Count.
*
*/
@SerializedName(value = "incompleteJobCount", alternate = {"IncompleteJobCount"})
@Expose
@Nullable
public Long incompleteJobCount;
/**
* The Media Sheet Count.
*
*/
@SerializedName(value = "mediaSheetCount", alternate = {"MediaSheetCount"})
@Expose
@Nullable
public Long mediaSheetCount;
/**
* The Page Count.
*
*/
@SerializedName(value = "pageCount", alternate = {"PageCount"})
@Expose
@Nullable
public Long pageCount;
/**
* The Single Sided Sheet Count.
*
*/
@SerializedName(value = "singleSidedSheetCount", alternate = {"SingleSidedSheetCount"})
@Expose
@Nullable
public Long singleSidedSheetCount;
/**
* The Usage Date.
*
*/
@SerializedName(value = "usageDate", alternate = {"UsageDate"})
@Expose
@Nullable
public com.microsoft.graph.core.DateOnly usageDate;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}