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

com.azure.communication.callautomation.models.CallLocator 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.communication.callautomation.models;

/** The locator used for joining or taking action on a call. */
public abstract class CallLocator {
    /*
     * The call locator kind.
     */
    private final CallLocatorKind kind;

    /**
     * Creates an instance of CallLocator class.
     *
     * @param kind a kind of the call locator.
    */
    CallLocator(CallLocatorKind kind) {
        this.kind = kind;
    }

    /**
     * Get the kind property: The call locator kind.
     *
     * @return the kind value.
     */
    public CallLocatorKind getKind() {
        return this.kind;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy