blob: 2b823398b771d03775ff016ed6b9ea325410101e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// TestRequestProgressResponse.h
// SmartDeviceLinkTests
//
// Created by Joel Fischer on 2/8/18.
// Copyright © 2018 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NSNumber+NumberType.h"
@interface TestRequestProgressResponse : NSObject
@property (strong, nonatomic) NSNumber<SDLInt> *correlationId;
@property (nonatomic) float percentComplete;
@property (strong, nonatomic) NSError *error;
- (instancetype)initWithCorrelationId:(NSNumber<SDLInt> *)correlationId percentComplete:(float)percentComplete error:(NSError *)error;
@end
|