GMTCMutableTripModelOptions
@interface GMTCMutableTripModelOptions : GMTCTripModelOptionsMutable version of GMTCTripModelOptions.
- 
                  
                  Sets or gets the current refresh time interval between the repeated trip info polling from server. DeclarationSwift var autoRefreshTimeInterval: TimeInterval { get set }Objective-C @property (nonatomic) NSTimeInterval autoRefreshTimeInterval;
- 
                  
                  Sets or gets the request header that will be appended to each trip info polling call. DeclarationSwift @NSCopying var tripRequestHeader: GMTSRequestHeader? { get set }Objective-C @property (nonatomic, copy, nullable) GMTSRequestHeader *tripRequestHeader;
- 
                  
                  Creates and returns an instance of GMTCMutableTripModelOptionsbased on the given instance ofGMTCTripModelOptions.DeclarationSwift convenience init(options: GMTCTripModelOptions?)Objective-C + (nonnull instancetype)mutableTripModelOptionsWithOptions: (nullable GMTCTripModelOptions *)options;ParametersoptionsThe original instance of GMTCTripModelOptions, based on where the mutable data will be constructed.