Type alias UpdateStep

UpdateStep: {
    handler: UpdateStepHandler;
    method: UpdateStepMethod;
    name: string;
    properties?: Record<string, unknown> | UpdatedDummyProperties;
    url: string;
}

Step or action that will be executed by updated.

Type declaration

  • handler: UpdateStepHandler

    Handler should be specified if method is handler.

  • method: UpdateStepMethod

    Method of step to be performed.

  • name: string

    Name that will be used to save downloaded file.

  • Optional properties?: Record<string, unknown> | UpdatedDummyProperties

    Additional properties can be specified in an object. Properties are method and handler specific.

  • url: string

    URL that will be used to download or upload a file.

Generated using TypeDoc