STRUCT
EnvironmentVariable
Contents
- Properties
valueisEnabled
- Methods
init(value:isEnabled:)init(stringLiteral:)
swift
public struct EnvironmentVariable: Equatable, Codable, Hashable, ExpressibleByStringLiteralIt represents an environment variable that is passed when running a scheme's action
Properties
value
swift
public var value: StringThe value of the environment variable
isEnabled
swift
public var isEnabled: BoolWhether the variable is enabled or not
Methods
init(value:isEnabled:)
swift
public init(value: String, isEnabled: Bool)init(stringLiteral:)
swift
public init(stringLiteral value: String)Parameters
| Name | Description |
|---|---|
| value | The value of the new instance. |
