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

dev.openfga.sdk.telemetry.Attribute Maven / Gradle / Ivy

package dev.openfga.sdk.telemetry;

/**
 * Represents an attribute in telemetry data.
 */
public class Attribute {
    private final String name;

    /**
     * Constructs a new Attribute object with the specified name.
     *
     * @param name the name of the attribute
     */
    public Attribute(String name) {
        this.name = name;
    }

    /**
     * Returns the name of the attribute.
     *
     * @return the name of the attribute
     */
    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy