TencentNavKit
TNKTollStationInfo.h
Go to the documentation of this file.
1//
2// TNKTollStationInfo.h
3// TNKNavigationKit
4//
5// Created by mol on 2023/2/28.
6// Copyright © 2023 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13
15@interface TNKTollStationItem : NSObject
16
18@property (nonatomic, readonly) NSString *enStationName;
20@property (nonatomic, readonly) NSString *extStationName;
21
23@property (nonatomic, readonly) int fee;
24
25@end
26
28@interface TNKTollStationInfo : NSObject
29
31@property (nonatomic, readonly) NSArray<TNKTollStationItem *> *tollStationItems;
32
33@end
34
35NS_ASSUME_NONNULL_END
途经的收费站信息
Definition: TNKTollStationInfo.h:29
分段收费站信息
Definition: TNKTollStationInfo.h:16
NSString * extStationName
出收费站名称
Definition: TNKTollStationInfo.h:20
int fee
费用,单位:元
Definition: TNKTollStationInfo.h:23
NSString * enStationName
进入的收费站名称
Definition: TNKTollStationInfo.h:18