| 123456789101112131415161718192021222324252627282930313233 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- @class MBNNRoutingProfile;
- NS_SWIFT_NAME(RouteRefreshControllerOptions)
- __attribute__((visibility ("default")))
- @interface MBNNRouteRefreshControllerOptions : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithRequestId:(nonnull NSString *)requestId
- routeIndex:(uint32_t)routeIndex
- routingProfile:(nonnull MBNNRoutingProfile *)routingProfile;
- /** A uuid specifying the request containing the route being refreshed */
- @property (nonatomic, readonly, nonnull, copy) NSString *requestId;
- /** The index of the specified route */
- @property (nonatomic, readonly) uint32_t routeIndex;
- /** The routing profile to use. Possible values are driving-traffic, driving, walking, or cycling with account name */
- @property (nonatomic, readonly, nonnull) MBNNRoutingProfile *routingProfile;
- - (BOOL)isEqualToRouteRefreshControllerOptions:(nonnull MBNNRouteRefreshControllerOptions *)other;
- @end
|