File

src/property/property-command.ts

Description

Property command structure

Index

Properties

Properties

properties
properties: PropertySet
Type : PropertySet

The properties to submit

import { PropertySet } from '../models/index';

/**
 * Property command structure
 */
export interface IPropertyCommand {
    /** The properties to submit */
    properties: PropertySet;
}

/**
 * Standard 'command' interface for controlling properties on most entities.
 */
export class PropertyCommand implements IPropertyCommand {
    /**
     * Constructor
     * @param properties The Properties to include in the command
     */
    constructor(public properties: PropertySet) {}
}

results matching ""

    No results matching ""