ABURitInfo+Demo.m 461 B

123456789101112131415161718192021
  1. //
  2. // ABURitInfo+Demo.m
  3. // ABUDemo
  4. //
  5. // Created by heyinyin on 2022/3/14.
  6. // Copyright © 2022 bytedance. All rights reserved.
  7. //
  8. #import "ABURitInfo+Demo.h"
  9. @implementation ABURitInfo (Demo)
  10. - (NSString *)description {
  11. return [NSString stringWithFormat:@"ecpm:%@ \n platform:%@ \n ritID:%@ \n requestID:%@", self.ecpm, self.adnName, self.slotID, self.requestID ? : @"None"];
  12. }
  13. - (NSString *)debugDescription {
  14. return self.description;
  15. }
  16. @end