summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetCloudAppProperties.h
blob: eadcded167447a0146d4a71cf9512d8b21dfeb6e (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
29
30
31
32
33
34
35
36
37
38
//
//  SDLSetCloudAppProperties.h
//  SmartDeviceLink
//
//  Created by Nicole on 2/26/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import "SDLRPCRequest.h"

@class SDLCloudAppProperties;


NS_ASSUME_NONNULL_BEGIN

/**
 *  RPC used to enable/disable a cloud application and set authentication data
 */
@interface SDLSetCloudAppProperties : SDLRPCRequest

/**
 *  Convenience init.
 *
 *  @param properties   The new cloud application properties
 *  @return             A SDLSetCloudAppProperties object
 */
- (instancetype)initWithProperties:(SDLCloudAppProperties *)properties;

/**
 *  The new cloud application properties.
 *
 *  SDLCloudAppProperties, Required
 */
@property (strong, nonatomic) SDLCloudAppProperties *properties;

@end

NS_ASSUME_NONNULL_END