GMTCTripRequest
@interface GMTCTripRequest : GMTSRequest <NSCopying, NSMutableCopying>A request object for specifying parameters to get an active trip.
- 
                  
                  Name of the target trip. The value will be an empty string(@“”) if set as nil. DeclarationSwift var tripName: String! { get }Objective-C @property (nonatomic, copy, readonly, null_resettable) NSString *tripName;
- 
                  
                  Refresh time interval of the trip request. DeclarationSwift var autoRefreshTimeInterval: TimeInterval { get }Objective-C @property (nonatomic, readonly) NSTimeInterval autoRefreshTimeInterval;
- 
                  
                  Initializes the object. DeclarationSwift init(requestHeader: GMTSRequestHeader?, tripName: String?, autoRefreshTimeInterval: TimeInterval)Objective-C - (nonnull instancetype) initWithRequestHeader:(nullable GMTSRequestHeader *)requestHeader tripName:(nullable NSString *)tripName autoRefreshTimeInterval:(NSTimeInterval)autoRefreshTimeInterval;ParametersrequestHeaderThe header object of the request. tripNameName of trip, if set as nil, the property tripNamegetter will return @“”.autoRefreshTimeIntervalThe refresh time interval of the trip request. 
- 
                  
                  Unavailable Use -initWithRequestHeader:providerId:tripId:autoRefreshTimeInterval:instead.DeclarationObjective-C - (nonnull instancetype)init;