EntityKey
open class EntityKey : ObjectBase
Encapsulates an OData entity key.
-
Undefined (and immutable) entity key.
Declaration
Swift
nonisolated(unsafe) public static let undefined: EntityKey -
Default initializer.
Declaration
Swift
override public init() -
Declaration
Swift
open func copyMutable() -> EntityKeyReturn Value
a copy of this key which doesn’t share mutable values with this key.
-
A map containing the key/value pairs for key properties.
Declaration
Swift
open var map: DataValueMap { get set } -
Declaration
Swift
override open func toString() -> StringReturn Value
A string representation of this object.
-
Set the value of a key property.
Declaration
Swift
open func with(name: String, value: DataValue?) -> EntityKeyParameters
nameKey property name.
valueKey property value.
Return Value
This key.