1a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis/*
2a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  Copyright 2014 The WebRTC Project Authors. All rights reserved.
3a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *
4a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  Use of this source code is governed by a BSD-style license
5a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  that can be found in the LICENSE file in the root of the source
6a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  tree. An additional intellectual property rights grant can be found
7a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  in the file PATENTS.  All contributing project authors may
8a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis *  be found in the AUTHORS file in the root of the source tree.
9a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis */
10a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
11a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis#import "ARDJoinResponse.h"
12a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
13a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@interface ARDJoinResponse ()
14a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
15a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, assign) ARDJoinResultType result;
16a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, assign) BOOL isInitiator;
17a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, strong) NSString *roomId;
18a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, strong) NSString *clientId;
19a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, strong) NSArray *messages;
20a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, strong) NSURL *webSocketURL;
21a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@property(nonatomic, strong) NSURL *webSocketRestURL;
22a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis
23a8736448970fedd82f051c6b2cc89185b755ddf3Donald E Curtis@end
24