/// <summary>
 /// Initializes a new instance of the <see cref="GrantMeeting" /> class.
 /// </summary>
 /// <param name="accessToken">The access token acts as a kind of \&quot;valet key\&quot; that the application can include with its requests to the identity provider, which prove that it has permission from the user to access those APIs..</param>
 /// <param name="expiresIn">Seconds that access token is valid for from now..</param>
 /// <param name="scope">scope.</param>
 public GrantMeeting(string accessToken = default(string), int?expiresIn = default(int?), GrantMeetingScope scope = default(GrantMeetingScope))
 {
     this.AccessToken = accessToken;
     this.ExpiresIn   = expiresIn;
     this.Scope       = scope;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GrantMeeting" /> class.
 /// </summary>
 /// <param name="AccessToken">The access token acts as a kind of \&quot;valet key\&quot; that the application can include with its requests to the identity provider, which prove that it has permission from the user to access those APIs..</param>
 /// <param name="ExpiresIn">Seconds that access token is valid for from now..</param>
 /// <param name="Scope">Scope.</param>
 public GrantMeeting(string AccessToken = default(string), int?ExpiresIn = default(int?), GrantMeetingScope Scope = default(GrantMeetingScope))
 {
     this.AccessToken = AccessToken;
     this.ExpiresIn   = ExpiresIn;
     this.Scope       = Scope;
 }