typings/lib2/messagev2/action/locationAction.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LocationAction = void 0;
const internal_1 = require("../internal");
/**
 * Represents a geo location action.
 * @extends Action
 */
class LocationAction extends internal_1.Action {
    /**
     * Creates an instance of LocationAction.
     * @param label - The label of the location action.
     */
    constructor(label) {
        super(label);
        this.type = 'location';
    }
}
exports.LocationAction = LocationAction;