
com.azure.resourcemanager.billing.models.NextBillingCycleDetails Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.billing.models;
import com.azure.core.annotation.Immutable;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Billing cycle details of the product.
*/
@Immutable
public final class NextBillingCycleDetails implements JsonSerializable {
/*
* Billing frequency of the product under the subscription.
*/
private String billingFrequency;
/**
* Creates an instance of NextBillingCycleDetails class.
*/
public NextBillingCycleDetails() {
}
/**
* Get the billingFrequency property: Billing frequency of the product under the subscription.
*
* @return the billingFrequency value.
*/
public String billingFrequency() {
return this.billingFrequency;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of NextBillingCycleDetails from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of NextBillingCycleDetails if the JsonReader was pointing to an instance of it, or null if it
* was pointing to JSON null.
* @throws IOException If an error occurs while reading the NextBillingCycleDetails.
*/
public static NextBillingCycleDetails fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
NextBillingCycleDetails deserializedNextBillingCycleDetails = new NextBillingCycleDetails();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("billingFrequency".equals(fieldName)) {
deserializedNextBillingCycleDetails.billingFrequency = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedNextBillingCycleDetails;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy