TaskCreateRequest
public struct TaskCreateRequest : Codable
-
The ID of the organization that owns this Task.
Declaration
Swift
public var orgID: String? -
The name of the organization that owns this Task.
Declaration
Swift
public var org: String? -
Declaration
Swift
public var status: TaskStatusType? -
The Flux script to run for this task.
Declaration
Swift
public var flux: String -
An optional description of the task.
Declaration
Swift
public var description: String? -
Declaration
Swift
public init(orgID: String? = nil, org: String? = nil, status: TaskStatusType? = nil, flux: String, description: String? = nil)
View on GitHub
TaskCreateRequest Structure Reference