This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from microsoftgraph/dev
Dev to Master
- Loading branch information
Showing
98 changed files
with
14,826 additions
and
6,267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
|
||
|
||
|
||
|
||
|
||
#import "MSGraphMediaConfig.h" | ||
|
||
@interface MSGraphAppHostedMediaConfig : MSGraphMediaConfig | ||
|
||
@property (nullable, nonatomic, setter=setBlob:, getter=blob) NSString* blob; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
|
||
|
||
|
||
#import "NSDate+MSSerialization.h" | ||
|
||
#import "MSGraphClientModels.h" | ||
|
||
@interface MSObject() | ||
|
||
@property (strong, nonatomic) NSMutableDictionary *dictionary; | ||
|
||
@end | ||
|
||
@interface MSGraphAppHostedMediaConfig() | ||
{ | ||
NSString* _blob; | ||
} | ||
@end | ||
|
||
@implementation MSGraphAppHostedMediaConfig | ||
|
||
- (NSString*) blob | ||
{ | ||
if([[NSNull null] isEqual:self.dictionary[@"blob"]]) | ||
{ | ||
return nil; | ||
} | ||
return self.dictionary[@"blob"]; | ||
} | ||
|
||
- (void) setBlob: (NSString*) val | ||
{ | ||
self.dictionary[@"blob"] = val; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
|
||
|
||
|
||
|
||
|
||
#import "MSObject.h" | ||
|
||
@interface MSGraphAudioConferencing : MSObject | ||
|
||
@property (nullable, nonatomic, setter=setConferenceId:, getter=conferenceId) NSString* conferenceId; | ||
@property (nullable, nonatomic, setter=setTollNumber:, getter=tollNumber) NSString* tollNumber; | ||
@property (nullable, nonatomic, setter=setTollFreeNumber:, getter=tollFreeNumber) NSString* tollFreeNumber; | ||
@property (nullable, nonatomic, setter=setDialinUrl:, getter=dialinUrl) NSString* dialinUrl; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
|
||
|
||
|
||
#import "NSDate+MSSerialization.h" | ||
|
||
#import "MSGraphClientModels.h" | ||
|
||
@interface MSObject() | ||
|
||
@property (strong, nonatomic) NSMutableDictionary *dictionary; | ||
|
||
@end | ||
|
||
@interface MSGraphAudioConferencing() | ||
{ | ||
NSString* _conferenceId; | ||
NSString* _tollNumber; | ||
NSString* _tollFreeNumber; | ||
NSString* _dialinUrl; | ||
} | ||
@end | ||
|
||
@implementation MSGraphAudioConferencing | ||
|
||
- (NSString*) conferenceId | ||
{ | ||
if([[NSNull null] isEqual:self.dictionary[@"conferenceId"]]) | ||
{ | ||
return nil; | ||
} | ||
return self.dictionary[@"conferenceId"]; | ||
} | ||
|
||
- (void) setConferenceId: (NSString*) val | ||
{ | ||
self.dictionary[@"conferenceId"] = val; | ||
} | ||
|
||
- (NSString*) tollNumber | ||
{ | ||
if([[NSNull null] isEqual:self.dictionary[@"tollNumber"]]) | ||
{ | ||
return nil; | ||
} | ||
return self.dictionary[@"tollNumber"]; | ||
} | ||
|
||
- (void) setTollNumber: (NSString*) val | ||
{ | ||
self.dictionary[@"tollNumber"] = val; | ||
} | ||
|
||
- (NSString*) tollFreeNumber | ||
{ | ||
if([[NSNull null] isEqual:self.dictionary[@"tollFreeNumber"]]) | ||
{ | ||
return nil; | ||
} | ||
return self.dictionary[@"tollFreeNumber"]; | ||
} | ||
|
||
- (void) setTollFreeNumber: (NSString*) val | ||
{ | ||
self.dictionary[@"tollFreeNumber"] = val; | ||
} | ||
|
||
- (NSString*) dialinUrl | ||
{ | ||
if([[NSNull null] isEqual:self.dictionary[@"dialinUrl"]]) | ||
{ | ||
return nil; | ||
} | ||
return self.dictionary[@"dialinUrl"]; | ||
} | ||
|
||
- (void) setDialinUrl: (NSString*) val | ||
{ | ||
self.dictionary[@"dialinUrl"] = val; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
|
||
|
||
@class MSGraphCallMediaState, MSGraphResultInfo, MSGraphParticipantInfo, MSGraphMediaConfig, MSGraphChatInfo, MSGraphMeetingInfo, MSGraphToneInfo, MSGraphParticipant, MSGraphCommsOperation; | ||
#import "MSGraphCallState.h" | ||
#import "MSGraphCallDirection.h" | ||
#import "MSGraphModality.h" | ||
|
||
|
||
#import "MSGraphEntity.h" | ||
|
||
@interface MSGraphCall : MSGraphEntity | ||
|
||
@property (nullable, nonatomic, setter=setState:, getter=state) MSGraphCallState* state; | ||
@property (nullable, nonatomic, setter=setMediaState:, getter=mediaState) MSGraphCallMediaState* mediaState; | ||
@property (nullable, nonatomic, setter=setResultInfo:, getter=resultInfo) MSGraphResultInfo* resultInfo; | ||
@property (nullable, nonatomic, setter=setDirection:, getter=direction) MSGraphCallDirection* direction; | ||
@property (nullable, nonatomic, setter=setSubject:, getter=subject) NSString* subject; | ||
@property (nonnull, nonatomic, setter=setCallbackUri:, getter=callbackUri) NSString* callbackUri; | ||
@property (nullable, nonatomic, setter=setSource:, getter=source) MSGraphParticipantInfo* source; | ||
@property (nullable, nonatomic, setter=setTargets:, getter=targets) NSArray* targets; | ||
@property (nullable, nonatomic, setter=setRequestedModalities:, getter=requestedModalities) NSArray* requestedModalities; | ||
@property (nullable, nonatomic, setter=setMediaConfig:, getter=mediaConfig) MSGraphMediaConfig* mediaConfig; | ||
@property (nullable, nonatomic, setter=setChatInfo:, getter=chatInfo) MSGraphChatInfo* chatInfo; | ||
@property (nullable, nonatomic, setter=setMeetingInfo:, getter=meetingInfo) MSGraphMeetingInfo* meetingInfo; | ||
@property (nullable, nonatomic, setter=setTenantId:, getter=tenantId) NSString* tenantId; | ||
@property (nullable, nonatomic, setter=setMyParticipantId:, getter=myParticipantId) NSString* myParticipantId; | ||
@property (nullable, nonatomic, setter=setToneInfo:, getter=toneInfo) MSGraphToneInfo* toneInfo; | ||
@property (nullable, nonatomic, setter=setParticipants:, getter=participants) NSArray* participants; | ||
@property (nullable, nonatomic, setter=setCallOperations:, getter=callOperations) NSArray* callOperations; | ||
|
||
@end |
Oops, something went wrong.