Interface ICommandTemplate

interface ICommandTemplate {
    allowParameterOverride?: boolean;
    command: string;
    createdAt?: string;
    deliverySettings?: ICommandDeliverySettings;
    description?: string;
    deviceFilter: null | IFilter;
    deviceScope?: IScopeFilter;
    enabled?: boolean;
    id?: string;
    lambdaUri?: null | string;
    name: string;
    organizationId?: string;
    parameterEnabled: boolean;
    parameterMeta?: IDictionary<string>;
    parameterValue?: null | string;
    schema?: null | string;
    tags: ITags;
    updatedAt?: string;
}

Hierarchy

  • ITaggedEntity
    • ICommandTemplate

Properties

allowParameterOverride?: boolean
command: string
createdAt?: string
deliverySettings?: ICommandDeliverySettings
description?: string
deviceFilter: null | IFilter
deviceScope?: IScopeFilter
enabled?: boolean
id?: string
lambdaUri?: null | string
name: string
organizationId?: string
parameterEnabled: boolean
parameterMeta?: IDictionary<string>
parameterValue?: null | string
schema?: null | string
tags: ITags
updatedAt?: string

Generated using TypeDoc