SMIChoiceListDependency

Objective-C

@protocol SMIChoiceListDependency <NSObject>

Swift

protocol ChoiceListDependency : NSObjectProtocol

Represents a dependency between a parent choice list and a child choice list.

  • ID of the parent choice list.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull parentId;

    Swift

    var parentId: String { get }
  • ID of the dependent child choice list.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull childId;

    Swift

    var childId: String { get }