MBXHttpHeaders.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Set of commonly used HTTP header strings. */
  4. NS_SWIFT_NAME(HttpHeaders)
  5. __attribute__((visibility ("default")))
  6. @interface MBXHttpHeaders : NSObject
  7. /** The Cache-Control HTTP header. */
  8. @property (nonatomic, class, readonly) NSString * CacheControl;
  9. /** The Content-Encoding representation header. */
  10. @property (nonatomic, class, readonly) NSString * ContentEncoding;
  11. /** The Content-Length header. */
  12. @property (nonatomic, class, readonly) NSString * ContentLength;
  13. /** The Content-Type representation header. */
  14. @property (nonatomic, class, readonly) NSString * ContentType;
  15. /** The Digest response HTTP header. */
  16. @property (nonatomic, class, readonly) NSString * Digest;
  17. /** The ETag (or entity tag) HTTP response header. */
  18. @property (nonatomic, class, readonly) NSString * ETag;
  19. /** The If-None-Match HTTP request header. */
  20. @property (nonatomic, class, readonly) NSString * IfNoneMatch;
  21. /** The Last-Modified response HTTP header. */
  22. @property (nonatomic, class, readonly) NSString * LastModified;
  23. /** The User-Agent request header. */
  24. @property (nonatomic, class, readonly) NSString * UserAgent;
  25. /** Custom Accept-Encoding request HTTP header. */
  26. @property (nonatomic, class, readonly) NSString * XAcceptEncoding;
  27. /** Custom Content-Encoding representation header. */
  28. @property (nonatomic, class, readonly) NSString * XContentEncoding;
  29. /** X-Accept-Delta request header. */
  30. @property (nonatomic, class, readonly) NSString * XAcceptDelta;
  31. /** X-Canonical-ETag response header. */
  32. @property (nonatomic, class, readonly) NSString * XCanonicalETag;
  33. /** X-Delta-Base response header. */
  34. @property (nonatomic, class, readonly) NSString * XDeltaBase;
  35. /** X-Rate-Limit-Reset response header. */
  36. @property (nonatomic, class, readonly) NSString * XRateLimitReset;
  37. @end