AgoraChatSDK 1.0.7
AgoraChatLocationMessageBody.h
1
15#import <Foundation/Foundation.h>
16
17#import "AgoraChatMessageBody.h"
18
27
35@property (nonatomic) double latitude;
36
44@property (nonatomic) double longitude;
45
53@property (nonatomic, copy) NSString * _Nullable address;
54
62@property (nonatomic, copy) NSString *_Nullable buildingName;
63
83- (instancetype _Nonnull)initWithLatitude:(double)aLatitude
84 longitude:(double)aLongitude
85 address:(NSString * _Nullable)aAddress;
107- (instancetype _Nonnull)initWithLatitude:(double)aLatitude
108 longitude:(double)aLongitude
109 address:(NSString *_Nullable)aAddress
110 buildingName:(NSString *_Nullable)aBuildingName;
111
112@end
Definition: AgoraChatLocationMessageBody.h:27
double longitude
Definition: AgoraChatLocationMessageBody.h:44
NSString *_Nullable buildingName
Definition: AgoraChatLocationMessageBody.h:62
double latitude
Definition: AgoraChatLocationMessageBody.h:35
NSString *_Nullable address
Definition: AgoraChatLocationMessageBody.h:53
Definition: AgoraChatMessageBody.h:45