BUImage.h 596 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // BUImage.h
  3. // BUAdSDK
  4. //
  5. // Copyright © 2017 bytedance. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface BUImage : NSObject <NSCoding>
  9. // image address URL
  10. @property (nonatomic, copy) NSString *imageURL;
  11. // image key
  12. @property (nonatomic, copy) NSString *image_key;
  13. // image width
  14. @property (nonatomic, assign) float width;
  15. // image height
  16. @property (nonatomic, assign) float height;
  17. // stream ad image druation
  18. @property (nonatomic, assign) float duration;
  19. - (instancetype)initWithDictionary:(NSDictionary *)dic;
  20. - (NSDictionary *)dictionaryValue;
  21. @end