NIMTeamFetchMemberOption.h 620 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NIMTeamFetchMemberOption.h
  3. // NIMSDK
  4. //
  5. // Created by Netease on 2019/5/27.
  6. // Copyright © 2019 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NIMTeamFetchMemberOption : NSObject
  11. /**
  12. * 查询成员的开始位置, 要求 >=0 。
  13. */
  14. @property (nonatomic, assign) NSInteger offset;
  15. /**
  16. * 查询成员的个数。如小于0, 查询从offset 开始至结尾的全部成员, 默认 -1。
  17. */
  18. @property (nonatomic, assign) NSInteger count;
  19. /**
  20. * 从服务端拉取
  21. */
  22. @property (nonatomic, assign) BOOL fromServer;
  23. @end
  24. NS_ASSUME_NONNULL_END