Documentation
¶
Overview ¶
* BSD 3-Clause License * Copyright © 2020. TIBCO Software Inc. * This file is subject to the license terms contained * in the license file that is distributed with this file.
* BSD 3-Clause License * Copyright © 2020. TIBCO Software Inc. * This file is subject to the license terms contained * in the license file that is distributed with this file.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Activity ¶
type Activity struct {
// contains filtered or unexported fields
}
Activity is an activity that is used to invoke a REST Operation
type Input ¶
type Input struct { Region string `md:"region"` // Cookie map[string]interface{} `md:"cookie"` // TIBCO Cloud cookie AccessToken string `md:"accessToken"` // AccessToken for Outh 2.0 SandboxID string `md:"sandboxId"` Select string `md:"select"` // A comma-separated list of identifiers defining the properties to be returned for each Type. If $select is not specified, all properties are returned. Possible values are: b, a, sa, s, js, c, ac Filter string `md:"filter"` // A filter expression that defines the Types to be returned. The expression can contain one of the following operands: applicationId (eq and in), applicationName (eq) and isCase (eq) Skip string `md:"skip"` // The number of items to exclude from the results list, counting from the beginning of the list. The value must be 0 or greater. For example, $skip=80 results in the first 80 items in the results list being ignored. Subsequent items are returned, starting with the 81st item in the list. Top string `md:"top"` // The maximum number of items to be returned from the results list (with the first item determined by the value of the $skip parameter). The value of $top must be between 1 and 1000. For example, $top=20 returns 20 items from the results list, or all the results if the list contains 20 or fewer items. Count bool `md:"count"` // If set to 'TRUE’, returns the number of Types in the result, rather than the Types themselves. }
Input for the activity
type Output ¶
type Output struct {
TypeResponseItems []casemanagement.GetTypeResponseItem `md:"typeResponseItems"`
}
Output for the activity
Click to show internal directories.
Click to hide internal directories.