-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADLConnectionDescriptor.h
42 lines (35 loc) · 2.21 KB
/
ADLConnectionDescriptor.h
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
39
40
41
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, May 19, 2018 at 4:51:44 PM Eastern Daylight Time
* Operating System: Version 10.2 (Build 14C92)
* Image Source: /var/containers/Bundle/Application/7AB1B6B1-534C-4BF9-A7EB-BE2BD4C13043/Snapchat.app/Snapchat
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
@class ADLVideoStreamDescriptor, ADLAuthDetails, NSNumber, NSString;
@interface ADLConnectionDescriptor : NSObject {
BOOL _autoPublishVideo;
BOOL _autoPublishAudio;
ADLVideoStreamDescriptor* _videoStream;
ADLAuthDetails* _authDetails;
NSNumber* _appId;
NSString* _scopeId;
NSString* _url;
}
@property (nonatomic,readonly) ADLVideoStreamDescriptor * videoStream; //@synthesize videoStream=_videoStream - In the implementation block
@property (nonatomic,readonly) ADLAuthDetails * authDetails; //@synthesize authDetails=_authDetails - In the implementation block
@property (nonatomic,readonly) BOOL autoPublishVideo; //@synthesize autoPublishVideo=_autoPublishVideo - In the implementation block
@property (nonatomic,readonly) BOOL autoPublishAudio; //@synthesize autoPublishAudio=_autoPublishAudio - In the implementation block
@property (nonatomic,readonly) NSNumber * appId; //@synthesize appId=_appId - In the implementation block
@property (nonatomic,readonly) NSString * scopeId; //@synthesize scopeId=_scopeId - In the implementation block
@property (nonatomic,readonly) NSString * url; //@synthesize url=_url - In the implementation block
+(id)ConnectionDescriptorWithVideoStream:(id)arg1 authDetails:(id)arg2 autoPublishVideo:(BOOL)arg3 autoPublishAudio:(BOOL)arg4 appId:(id)arg5 scopeId:(id)arg6 url:(id)arg7 ;
-(NSString *)scopeId;
-(id)initWithVideoStream:(id)arg1 authDetails:(id)arg2 autoPublishVideo:(BOOL)arg3 autoPublishAudio:(BOOL)arg4 appId:(id)arg5 scopeId:(id)arg6 url:(id)arg7 ;
-(ADLAuthDetails *)authDetails;
-(BOOL)autoPublishVideo;
-(BOOL)autoPublishAudio;
-(id)description;
-(NSString *)url;
-(NSNumber *)appId;
-(ADLVideoStreamDescriptor *)videoStream;
@end