ResourcePath

open class ResourcePath : ObjectBase

Holds the path to a data service resource.

  • Default initializer.

    Declaration

    Swift

    override public init()
  • Data path for resource. Will be null if entitySet and/or entityKey is non-null.

    Declaration

    Swift

    open var dataPath: DataPath? { get set }
  • Entity key for resource path. Will be null if dataPath is non-null.

    Declaration

    Swift

    open var entityKey: EntityKey? { get set }
  • Entity set for resource path. Will be null if dataPath is non-null.

    Declaration

    Swift

    open var entitySet: EntitySet? { get set }