question

MarkAtAgilliance avatar image
0 Votes"
MarkAtAgilliance asked

BookingStaffMemberBase returned from GetResponse - should be BookingStaffMember?

Using the 4.16 Graph SDK , this call returns a GraphResponse<BookingStaffMember*Base*> instead of a GraphResponse<BookingStaffMember> object.

     await _graphServiceClient.Solutions.BookingBusinesses[xxxxxxx]
         .StaffMembers[xxxxx]
         .Request()
         .GetResponseAsync(cancellationToken);


This is inconsistent with other Get requests like
await _graphServiceClient.Solutions.BookingBusinesses[xxxxxxx]
.Services[xxxxx]
.Request()
.GetResponseAsync(cancellationToken);

which returns a GraphResponse<BookingService> (not the abstract base).

Bug? Feature?

Thanks, Mark.



microsoft-graph-customer-booking
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

0 Answers