21 lines
515 B
Objective-C
21 lines
515 B
Objective-C
//
|
|
// Created by chenjili on 2022/6/8.
|
|
// Copyright (c) 2022 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NIMLogDesensitizationConfig : NSObject <NSCopying>
|
|
|
|
/**
|
|
* 是否脱下载地址,包括上传成功后得到的下载地址
|
|
*/
|
|
@property (nonatomic, assign) BOOL hideDownloadUrl;
|
|
|
|
+ (NSString *) getPrintTextOfDownloadUrl:(NSString *) url
|
|
config:(NIMLogDesensitizationConfig *) config;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END |