summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLEncodedSyncPData.h
blob: df7f1a4f724dafc7ecf2f3b338b671bd7074e763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//  SDLEncodedSyncPData.h
//


#import "SDLRPCRequest.h"

/**
 *  Allows encoded data in the form of SyncP packets to be sent to the SYNC module. Legacy / v1 Protocol implementation; use SyncPData instead.
 *
 *  *** DEPRECATED ***
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLEncodedSyncPData : SDLRPCRequest

/**
 *  Contains base64 encoded string of SyncP packets.
 *
 *  Required, Array length 1 - 100, String length 1 - 1,000,000
 *
 *  @see SDLTTSChunk
 */
@property (strong, nonatomic) NSArray<NSString *> *data;

@end

NS_ASSUME_NONNULL_END