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

com.microsoft.telemetry.ITelemetry Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package com.microsoft.telemetry;

import java.util.Map;

public abstract class ITelemetry extends Domain {
    /**
     * Gets the properties.
     */
    public abstract Map getProperties();

    /**
     * Sets the properties.
     */
    public abstract void setProperties(Map value);

    /**
     * Sets the version
     */
    public abstract void setVer(int ver);

    /**
     * Gets the envelope name for this telemetry object.
     */
    public abstract String getEnvelopeName();

    /**
     * Gets the base type for this telemetry object.
     */
    public abstract String getBaseType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy