QMEvaluation.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // QMEvaluation.h
  3. // QMLineSDK
  4. //
  5. // Created by lishuijiao on 2018/11/22.
  6. // Copyright © 2018年 haochongfeng. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class QMEvaluats;
  10. @interface QMEvaluation : NSObject
  11. @property (nonatomic, copy) NSString * title;
  12. @property (nonatomic, copy) NSString * thank;
  13. @property (nonatomic, copy) NSArray<QMEvaluats *> * evaluats;
  14. @property (nonatomic, copy) NSString * timeout;
  15. ///满意度评价超时是否开启
  16. @property (nonatomic, assign) BOOL CSRAging;
  17. ///访客是否开启满意度权限
  18. @property (nonatomic, assign) BOOL CSRCustomerPush;
  19. ///访客离开是否弹出满意度评价权限
  20. @property (nonatomic, assign) BOOL CSRCustomerLeavePush;
  21. @end
  22. @interface QMEvaluats : NSObject
  23. @property (nonatomic, copy) NSString *name;
  24. @property (nonatomic, copy) NSString * value;
  25. @property (nonatomic, copy) NSArray * reason;
  26. /// 标签是否必填
  27. @property (nonatomic, copy) NSString * labelRequired;
  28. /// 标签描述是否必填
  29. @property (nonatomic, copy) NSString * proposalRequired;
  30. @end