AgoraChatSDK 1.2.0
AgoraChatLocationMessageBody.h
1
9#import <Foundation/Foundation.h>
10
11#import "AgoraChatMessageBody.h"
12
18
23@property (nonatomic) double latitude;
24
29@property (nonatomic) double longitude;
30
35@property (nonatomic, copy) NSString * _Nullable address;
36
41@property (nonatomic, copy) NSString *_Nullable buildingName;
42
53- (instancetype _Nonnull)initWithLatitude:(double)aLatitude
54 longitude:(double)aLongitude
55 address:(NSString * _Nullable)aAddress;
67- (instancetype _Nonnull)initWithLatitude:(double)aLatitude
68 longitude:(double)aLongitude
69 address:(NSString *_Nullable)aAddress
70 buildingName:(NSString *_Nullable)aBuildingName;
71
72@end
Definition: AgoraChatLocationMessageBody.h:18
double longitude
Definition: AgoraChatLocationMessageBody.h:29
NSString *_Nullable buildingName
Definition: AgoraChatLocationMessageBody.h:41
double latitude
Definition: AgoraChatLocationMessageBody.h:23
NSString *_Nullable address
Definition: AgoraChatLocationMessageBody.h:35
Definition: AgoraChatMessageBody.h:33