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

com.microsoft.kiota.serialization.AdditionalDataHolder Maven / Gradle / Ivy

The newest version!
package com.microsoft.kiota.serialization;

import jakarta.annotation.Nonnull;

import java.util.Map;

/** Defines a contract for models that can hold additional data besides the described properties. */
public interface AdditionalDataHolder {
    /**
     * Gets the additional data for this object that did not belong to the properties.
     * @return The additional data for this object.
     */
    @Nonnull Map getAdditionalData();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy