public ESOAuthConsent(ESApp clientApplication, List <ESApprovedScope> approvedScopes, List <ESRefreshToken> refreshTokens, ESService?clientService = null)
 {
     ClientService     = clientService;
     ClientApplication = clientApplication;
     ApprovedScopes    = approvedScopes;
     RefreshTokens     = refreshTokens;
 }
Exemplo n.º 2
0
 public MeetingOrganizerApplication(ESApp applicationRef, ESService?appRef = null)
 {
     AppRef         = appRef;
     ApplicationRef = applicationRef;
 }
 public static MeetingOrganizerApplication Application(ESApp applicationRef, ESService?appRef = null)
 => new MeetingOrganizerApplication(applicationRef: applicationRef, appRef: appRef);
Exemplo n.º 4
0
 public CApplicationPrincipalDetails(ESApp app)
 {
     App = app;
 }
Exemplo n.º 5
0
 public UnfurlDetailsApplication(ESApp app)
 {
     App = app;
 }
Exemplo n.º 6
0
 public M2ChannelContentApplication(ESApp app, ChannelSpecificDefaults notificationDefaults)
 {
     App = app;
     NotificationDefaults = notificationDefaults;
 }