com.microsoft.graph.beta.generated.models.AgedAccountsReceivable Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import com.microsoft.kiota.store.BackedModel;
import com.microsoft.kiota.store.BackingStore;
import com.microsoft.kiota.store.BackingStoreFactorySingleton;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.UUID;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class AgedAccountsReceivable implements AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
@jakarta.annotation.Nonnull
protected BackingStore backingStore;
/**
* Instantiates a new {@link AgedAccountsReceivable} and sets the default values.
*/
public AgedAccountsReceivable() {
this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
this.setAdditionalData(new HashMap<>());
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link AgedAccountsReceivable}
*/
@jakarta.annotation.Nonnull
public static AgedAccountsReceivable createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new AgedAccountsReceivable();
}
/**
* Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @return a {@link Map}
*/
@jakarta.annotation.Nonnull
public Map getAdditionalData() {
Map value = this.backingStore.get("additionalData");
if(value == null) {
value = new HashMap<>();
this.setAdditionalData(value);
}
return value;
}
/**
* Gets the agedAsOfDate property value. The agedAsOfDate property
* @return a {@link LocalDate}
*/
@jakarta.annotation.Nullable
public LocalDate getAgedAsOfDate() {
return this.backingStore.get("agedAsOfDate");
}
/**
* Gets the backingStore property value. Stores model information.
* @return a {@link BackingStore}
*/
@jakarta.annotation.Nonnull
public BackingStore getBackingStore() {
return this.backingStore;
}
/**
* Gets the balanceDue property value. The balanceDue property
* @return a {@link BigDecimal}
*/
@jakarta.annotation.Nullable
public BigDecimal getBalanceDue() {
return this.backingStore.get("balanceDue");
}
/**
* Gets the currencyCode property value. The currencyCode property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getCurrencyCode() {
return this.backingStore.get("currencyCode");
}
/**
* Gets the currentAmount property value. The currentAmount property
* @return a {@link BigDecimal}
*/
@jakarta.annotation.Nullable
public BigDecimal getCurrentAmount() {
return this.backingStore.get("currentAmount");
}
/**
* Gets the customerId property value. The customerId property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getCustomerId() {
return this.backingStore.get("customerId");
}
/**
* Gets the customerNumber property value. The customerNumber property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getCustomerNumber() {
return this.backingStore.get("customerNumber");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(13);
deserializerMap.put("agedAsOfDate", (n) -> { this.setAgedAsOfDate(n.getLocalDateValue()); });
deserializerMap.put("balanceDue", (n) -> { this.setBalanceDue(n.getBigDecimalValue()); });
deserializerMap.put("currencyCode", (n) -> { this.setCurrencyCode(n.getStringValue()); });
deserializerMap.put("currentAmount", (n) -> { this.setCurrentAmount(n.getBigDecimalValue()); });
deserializerMap.put("customerId", (n) -> { this.setCustomerId(n.getStringValue()); });
deserializerMap.put("customerNumber", (n) -> { this.setCustomerNumber(n.getStringValue()); });
deserializerMap.put("id", (n) -> { this.setId(n.getUUIDValue()); });
deserializerMap.put("name", (n) -> { this.setName(n.getStringValue()); });
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
deserializerMap.put("period1Amount", (n) -> { this.setPeriod1Amount(n.getBigDecimalValue()); });
deserializerMap.put("period2Amount", (n) -> { this.setPeriod2Amount(n.getBigDecimalValue()); });
deserializerMap.put("period3Amount", (n) -> { this.setPeriod3Amount(n.getBigDecimalValue()); });
deserializerMap.put("periodLengthFilter", (n) -> { this.setPeriodLengthFilter(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the id property value. The id property
* @return a {@link UUID}
*/
@jakarta.annotation.Nullable
public UUID getId() {
return this.backingStore.get("id");
}
/**
* Gets the name property value. The name property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getName() {
return this.backingStore.get("name");
}
/**
* Gets the @odata.type property value. The OdataType property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getOdataType() {
return this.backingStore.get("odataType");
}
/**
* Gets the period1Amount property value. The period1Amount property
* @return a {@link BigDecimal}
*/
@jakarta.annotation.Nullable
public BigDecimal getPeriod1Amount() {
return this.backingStore.get("period1Amount");
}
/**
* Gets the period2Amount property value. The period2Amount property
* @return a {@link BigDecimal}
*/
@jakarta.annotation.Nullable
public BigDecimal getPeriod2Amount() {
return this.backingStore.get("period2Amount");
}
/**
* Gets the period3Amount property value. The period3Amount property
* @return a {@link BigDecimal}
*/
@jakarta.annotation.Nullable
public BigDecimal getPeriod3Amount() {
return this.backingStore.get("period3Amount");
}
/**
* Gets the periodLengthFilter property value. The periodLengthFilter property
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getPeriodLengthFilter() {
return this.backingStore.get("periodLengthFilter");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
writer.writeLocalDateValue("agedAsOfDate", this.getAgedAsOfDate());
writer.writeBigDecimalValue("balanceDue", this.getBalanceDue());
writer.writeStringValue("currencyCode", this.getCurrencyCode());
writer.writeBigDecimalValue("currentAmount", this.getCurrentAmount());
writer.writeStringValue("customerId", this.getCustomerId());
writer.writeStringValue("customerNumber", this.getCustomerNumber());
writer.writeUUIDValue("id", this.getId());
writer.writeStringValue("name", this.getName());
writer.writeStringValue("@odata.type", this.getOdataType());
writer.writeBigDecimalValue("period1Amount", this.getPeriod1Amount());
writer.writeBigDecimalValue("period2Amount", this.getPeriod2Amount());
writer.writeBigDecimalValue("period3Amount", this.getPeriod3Amount());
writer.writeStringValue("periodLengthFilter", this.getPeriodLengthFilter());
writer.writeAdditionalData(this.getAdditionalData());
}
/**
* Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
* @param value Value to set for the AdditionalData property.
*/
public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
this.backingStore.set("additionalData", value);
}
/**
* Sets the agedAsOfDate property value. The agedAsOfDate property
* @param value Value to set for the agedAsOfDate property.
*/
public void setAgedAsOfDate(@jakarta.annotation.Nullable final LocalDate value) {
this.backingStore.set("agedAsOfDate", value);
}
/**
* Sets the backingStore property value. Stores model information.
* @param value Value to set for the backingStore property.
*/
public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
Objects.requireNonNull(value);
this.backingStore = value;
}
/**
* Sets the balanceDue property value. The balanceDue property
* @param value Value to set for the balanceDue property.
*/
public void setBalanceDue(@jakarta.annotation.Nullable final BigDecimal value) {
this.backingStore.set("balanceDue", value);
}
/**
* Sets the currencyCode property value. The currencyCode property
* @param value Value to set for the currencyCode property.
*/
public void setCurrencyCode(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("currencyCode", value);
}
/**
* Sets the currentAmount property value. The currentAmount property
* @param value Value to set for the currentAmount property.
*/
public void setCurrentAmount(@jakarta.annotation.Nullable final BigDecimal value) {
this.backingStore.set("currentAmount", value);
}
/**
* Sets the customerId property value. The customerId property
* @param value Value to set for the customerId property.
*/
public void setCustomerId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("customerId", value);
}
/**
* Sets the customerNumber property value. The customerNumber property
* @param value Value to set for the customerNumber property.
*/
public void setCustomerNumber(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("customerNumber", value);
}
/**
* Sets the id property value. The id property
* @param value Value to set for the id property.
*/
public void setId(@jakarta.annotation.Nullable final UUID value) {
this.backingStore.set("id", value);
}
/**
* Sets the name property value. The name property
* @param value Value to set for the name property.
*/
public void setName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("name", value);
}
/**
* Sets the @odata.type property value. The OdataType property
* @param value Value to set for the @odata.type property.
*/
public void setOdataType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("odataType", value);
}
/**
* Sets the period1Amount property value. The period1Amount property
* @param value Value to set for the period1Amount property.
*/
public void setPeriod1Amount(@jakarta.annotation.Nullable final BigDecimal value) {
this.backingStore.set("period1Amount", value);
}
/**
* Sets the period2Amount property value. The period2Amount property
* @param value Value to set for the period2Amount property.
*/
public void setPeriod2Amount(@jakarta.annotation.Nullable final BigDecimal value) {
this.backingStore.set("period2Amount", value);
}
/**
* Sets the period3Amount property value. The period3Amount property
* @param value Value to set for the period3Amount property.
*/
public void setPeriod3Amount(@jakarta.annotation.Nullable final BigDecimal value) {
this.backingStore.set("period3Amount", value);
}
/**
* Sets the periodLengthFilter property value. The periodLengthFilter property
* @param value Value to set for the periodLengthFilter property.
*/
public void setPeriodLengthFilter(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("periodLengthFilter", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy