STSGetVideoListConfiguration

@interface STSGetVideoListConfiguration : NSObject

The configuration defines the request rules of how to get a video list.

  • Filter the items which exist in the categories.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NSArray<NSNumber *> *categoryIds;

    Swift

    var categoryIds: [NSNumber]! { get set }
  • Filter the items which are tagged with the tag names.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NSArray<NSString *> *tags;

    Swift

    var tags: [String]! { get set }
  • Filter the items which are owned by the member.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NSString *ownerMemberId;

    Swift

    var ownerMemberId: String! { get set }