getChatAttachmentConsent abstract method

  1. @GET.new("rtc/chatAttachmentDownloadConsent")
Future<BaseResponse<ChatAttachmentConsentModel>> getChatAttachmentConsent(
  1. @Header.new("x-self-identity") String selfIdentity,
  2. @Query.new("meeting_id") String meetingId
)

Implementation

@GET("rtc/chatAttachmentDownloadConsent")
Future<BaseResponse<ChatAttachmentConsentModel>> getChatAttachmentConsent(
  @Header("x-self-identity") String selfIdentity,
  @Query("meeting_id") String meetingId,
);