CreateEnrichment
public struct CreateEnrichment : Codable, Equatable
Information about a specific enrichment.
-
The type of this enrichment.
See moreDeclaration
Swift
public enum TypeEnum : String
-
The human readable name for this enrichment.
Declaration
Swift
public var name: String?
-
The description of this enrichment.
Declaration
Swift
public var description: String?
-
The type of this enrichment.
Declaration
Swift
public var type: String?
-
An object that contains options for the current enrichment. Starting with version
2020-08-30
, the enrichment options are not included in responses from the List Enrichments method.Declaration
Swift
public var options: EnrichmentOptions?
-
Initialize a
CreateEnrichment
with member variables.Declaration
Swift
public init( name: String? = nil, description: String? = nil, type: String? = nil, options: EnrichmentOptions? = nil )
Parameters
name
The human readable name for this enrichment.
description
The description of this enrichment.
type
The type of this enrichment.
options
An object that contains options for the current enrichment. Starting with version
2020-08-30
, the enrichment options are not included in responses from the List Enrichments method.Return Value
An initialized
CreateEnrichment
.