GMTCTripModelOptions
@interface GMTCTripModelOptions : GMTSRequestOptions <NSMutableCopying>Object that for configuring the GMTCTripModel.
- 
                  
                  Returns the current refresh time interval between the repeated trip info polling from server. DeclarationSwift var autoRefreshTimeInterval: TimeInterval { get }Objective-C @property (nonatomic, readonly) NSTimeInterval autoRefreshTimeInterval;
- 
                  
                  Returns the request header that will be appended to each trip info polling call. DeclarationSwift var tripRequestHeader: GMTSRequestHeader? { get }Objective-C @property (nonatomic, readonly, nullable) GMTSRequestHeader *tripRequestHeader;
- 
                  
                  Initializes the instance. DeclarationSwift init(autoRefreshTimeInterval: TimeInterval, trip tripRequestHeader: GMTSRequestHeader?)Objective-C - (nonnull instancetype) initWithAutoRefreshTimeInterval:(NSTimeInterval)autoRefreshTimeInterval tripRequestHeader: (nullable GMTSRequestHeader *)tripRequestHeader;ParametersautoRefreshTimeIntervalA refresh time inverval between the repeated trip info polling. tripRequestHeaderA trip request header that will be appended to each trip info polling call. 
- 
                  
                  Initializes the instance. Calling this is equivalent to calling initWithAutoRefreshTimeInterval:0.0 tripRequestHeader:nil.DeclarationSwift convenience init()Objective-C - (nonnull instancetype)init;