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

Description
I'm using CocoaPods:
...
pod 'MSGraphClientSDK'
pod 'MSGraphMSALAuthProvider'
...
running 'pod install' yields:
...
Installing MSAL (0.5.0)
Installing MSGraphClientSDK (1.0.0)
Installing MSGraphMSALAuthProvider (0.2.0)
...
There are no conflicts noted!
The online docs here:
https://docs.microsoft.com/en-us/graph/api/user-post-contacts?view=graph-rest-1.0&tabs=objc
have a code sample for ObjectiveC which includes this statement:
...
MSGraphContact *contact = [[MSGraphContact alloc] init];
My application has:
#import <MSGraphClientSDK/MSGraphClientSDK.h>
...
- (void) createMSGraphContact; {
MSGraphContact *contact = [[MSGraphContact alloc] init];
...
I get an 'undeclared identifier' compiler error for 'MSGraphContact'
I cannot find any instance of the MSGraphContact class in the Pods/MSGraphClientSDK/**
Please clarify what I am missing or what I am misunderstanding!