ISSegment.h 813 B

123456789101112131415161718192021222324
  1. //
  2. // ISSegment.h
  3. // IronSource
  4. //
  5. // Created by Gili Ariel on 06/07/2017.
  6. // Copyright © 2017 Supersonic. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ISGender.h"
  10. @interface ISSegment : NSObject
  11. @property (nonatomic) int age;
  12. @property (nonatomic) int level;
  13. @property (nonatomic) double iapTotal;
  14. @property (nonatomic) BOOL paying;
  15. @property (nonatomic) ISGender gender;
  16. @property (nonatomic, strong) NSDate *userCreationDate;
  17. @property (nonatomic, strong) NSString *segmentName;
  18. @property (nonatomic, strong, readonly) NSDictionary *customKeys;
  19. - (void)setCustomValue:(NSString *)value forKey:(NSString *)key;
  20. @end