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
CreateEnrichmentwith member variables.Declaration
Swift
public init( name: String? = nil, description: String? = nil, type: String? = nil, options: EnrichmentOptions? = nil )Parameters
nameThe human readable name for this enrichment.
descriptionThe description of this enrichment.
typeThe type of this enrichment.
optionsAn 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.
View on GitHub
CreateEnrichment Structure Reference