2023-07-06 16:54:13 +08:00
|
|
|
//
|
|
|
|
// Api+Message.h
|
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by zu on 2021/12/8.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "Api.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface Api (Message)
|
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
+ (void)getChatLimit:(HttpRequestHelperCompletion)complection receiverUid:(NSString *)receiverUid ;
|
2024-01-02 16:34:32 +08:00
|
|
|
///获取私聊限制接口
|
|
|
|
+(void)getPrivateChatCheck:(HttpRequestHelperCompletion)complection content:(NSString *)content toUid:(NSString *)toUid;
|
2023-07-06 16:54:13 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|