getSessionDetails abstract method

  1. @GET.new("rtc/meeting/session/detail")
Future<BaseResponse<SessionDetailsData>> getSessionDetails(
  1. @Header.new("x-self-identity") String selfIdentity,
  2. @Query.new("meeting_uid") String meetingId
)

Implementation

@GET("rtc/meeting/session/detail")
Future<BaseResponse<SessionDetailsData>> getSessionDetails(
  @Header("x-self-identity") String selfIdentity,
  @Query("meeting_uid") String meetingId,
);