Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 5879f4d

Browse files
Merge pull request #40 from microsoftgraph/dev
Dev to Master
2 parents 04d36d4 + 5fe49ab commit 5879f4d

File tree

98 files changed

+14826
-6267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+14826
-6267
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
2+
3+
4+
5+
6+
7+
#import "MSGraphMediaConfig.h"
8+
9+
@interface MSGraphAppHostedMediaConfig : MSGraphMediaConfig
10+
11+
@property (nullable, nonatomic, setter=setBlob:, getter=blob) NSString* blob;
12+
13+
@end
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
2+
3+
4+
5+
#import "NSDate+MSSerialization.h"
6+
7+
#import "MSGraphClientModels.h"
8+
9+
@interface MSObject()
10+
11+
@property (strong, nonatomic) NSMutableDictionary *dictionary;
12+
13+
@end
14+
15+
@interface MSGraphAppHostedMediaConfig()
16+
{
17+
NSString* _blob;
18+
}
19+
@end
20+
21+
@implementation MSGraphAppHostedMediaConfig
22+
23+
- (NSString*) blob
24+
{
25+
if([[NSNull null] isEqual:self.dictionary[@"blob"]])
26+
{
27+
return nil;
28+
}
29+
return self.dictionary[@"blob"];
30+
}
31+
32+
- (void) setBlob: (NSString*) val
33+
{
34+
self.dictionary[@"blob"] = val;
35+
}
36+
37+
@end
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
2+
3+
4+
5+
6+
7+
#import "MSObject.h"
8+
9+
@interface MSGraphAudioConferencing : MSObject
10+
11+
@property (nullable, nonatomic, setter=setConferenceId:, getter=conferenceId) NSString* conferenceId;
12+
@property (nullable, nonatomic, setter=setTollNumber:, getter=tollNumber) NSString* tollNumber;
13+
@property (nullable, nonatomic, setter=setTollFreeNumber:, getter=tollFreeNumber) NSString* tollFreeNumber;
14+
@property (nullable, nonatomic, setter=setDialinUrl:, getter=dialinUrl) NSString* dialinUrl;
15+
16+
@end
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
2+
3+
4+
5+
#import "NSDate+MSSerialization.h"
6+
7+
#import "MSGraphClientModels.h"
8+
9+
@interface MSObject()
10+
11+
@property (strong, nonatomic) NSMutableDictionary *dictionary;
12+
13+
@end
14+
15+
@interface MSGraphAudioConferencing()
16+
{
17+
NSString* _conferenceId;
18+
NSString* _tollNumber;
19+
NSString* _tollFreeNumber;
20+
NSString* _dialinUrl;
21+
}
22+
@end
23+
24+
@implementation MSGraphAudioConferencing
25+
26+
- (NSString*) conferenceId
27+
{
28+
if([[NSNull null] isEqual:self.dictionary[@"conferenceId"]])
29+
{
30+
return nil;
31+
}
32+
return self.dictionary[@"conferenceId"];
33+
}
34+
35+
- (void) setConferenceId: (NSString*) val
36+
{
37+
self.dictionary[@"conferenceId"] = val;
38+
}
39+
40+
- (NSString*) tollNumber
41+
{
42+
if([[NSNull null] isEqual:self.dictionary[@"tollNumber"]])
43+
{
44+
return nil;
45+
}
46+
return self.dictionary[@"tollNumber"];
47+
}
48+
49+
- (void) setTollNumber: (NSString*) val
50+
{
51+
self.dictionary[@"tollNumber"] = val;
52+
}
53+
54+
- (NSString*) tollFreeNumber
55+
{
56+
if([[NSNull null] isEqual:self.dictionary[@"tollFreeNumber"]])
57+
{
58+
return nil;
59+
}
60+
return self.dictionary[@"tollFreeNumber"];
61+
}
62+
63+
- (void) setTollFreeNumber: (NSString*) val
64+
{
65+
self.dictionary[@"tollFreeNumber"] = val;
66+
}
67+
68+
- (NSString*) dialinUrl
69+
{
70+
if([[NSNull null] isEqual:self.dictionary[@"dialinUrl"]])
71+
{
72+
return nil;
73+
}
74+
return self.dictionary[@"dialinUrl"];
75+
}
76+
77+
- (void) setDialinUrl: (NSString*) val
78+
{
79+
self.dictionary[@"dialinUrl"] = val;
80+
}
81+
82+
@end

GeneratedModels/MSGraphCall.h

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
2+
3+
4+
@class MSGraphCallMediaState, MSGraphResultInfo, MSGraphParticipantInfo, MSGraphMediaConfig, MSGraphChatInfo, MSGraphMeetingInfo, MSGraphToneInfo, MSGraphParticipant, MSGraphCommsOperation;
5+
#import "MSGraphCallState.h"
6+
#import "MSGraphCallDirection.h"
7+
#import "MSGraphModality.h"
8+
9+
10+
#import "MSGraphEntity.h"
11+
12+
@interface MSGraphCall : MSGraphEntity
13+
14+
@property (nullable, nonatomic, setter=setState:, getter=state) MSGraphCallState* state;
15+
@property (nullable, nonatomic, setter=setMediaState:, getter=mediaState) MSGraphCallMediaState* mediaState;
16+
@property (nullable, nonatomic, setter=setResultInfo:, getter=resultInfo) MSGraphResultInfo* resultInfo;
17+
@property (nullable, nonatomic, setter=setDirection:, getter=direction) MSGraphCallDirection* direction;
18+
@property (nullable, nonatomic, setter=setSubject:, getter=subject) NSString* subject;
19+
@property (nonnull, nonatomic, setter=setCallbackUri:, getter=callbackUri) NSString* callbackUri;
20+
@property (nullable, nonatomic, setter=setSource:, getter=source) MSGraphParticipantInfo* source;
21+
@property (nullable, nonatomic, setter=setTargets:, getter=targets) NSArray* targets;
22+
@property (nullable, nonatomic, setter=setRequestedModalities:, getter=requestedModalities) NSArray* requestedModalities;
23+
@property (nullable, nonatomic, setter=setMediaConfig:, getter=mediaConfig) MSGraphMediaConfig* mediaConfig;
24+
@property (nullable, nonatomic, setter=setChatInfo:, getter=chatInfo) MSGraphChatInfo* chatInfo;
25+
@property (nullable, nonatomic, setter=setMeetingInfo:, getter=meetingInfo) MSGraphMeetingInfo* meetingInfo;
26+
@property (nullable, nonatomic, setter=setTenantId:, getter=tenantId) NSString* tenantId;
27+
@property (nullable, nonatomic, setter=setMyParticipantId:, getter=myParticipantId) NSString* myParticipantId;
28+
@property (nullable, nonatomic, setter=setToneInfo:, getter=toneInfo) MSGraphToneInfo* toneInfo;
29+
@property (nullable, nonatomic, setter=setParticipants:, getter=participants) NSArray* participants;
30+
@property (nullable, nonatomic, setter=setCallOperations:, getter=callOperations) NSArray* callOperations;
31+
32+
@end

0 commit comments

Comments
 (0)