LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
global class UserProfiles {
    global Object clone() { }
    global static void deleteBannerPhoto(String communityId, String userId) { }
    global static void deletePhoto(String communityId, String userId) { }
    global static ConnectApi.BannerPhoto getBannerPhoto(String communityId, String userId) { }
    global static ConnectApi.Photo getPhoto(String communityId, String userId) { }
    global static ConnectApi.UserProfile getUserProfile(String communityId, String userId) { }
    global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String userId, String fileId, Integer versionNumber) { }
    global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String userId, ConnectApi.BinaryInput fileUpload) { }
    global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String userId, ConnectApi.BannerPhotoInput bannerPhoto, ConnectApi.BinaryInput fileUpload) { }
    global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String userId, ConnectApi.BannerPhotoInput bannerPhoto) { }
    global static ConnectApi.Photo setPhoto(String communityId, String userId, String fileId, Integer versionNumber) { }
    global static ConnectApi.Photo setPhoto(String communityId, String userId, ConnectApi.BinaryInput fileUpload) { }
    global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { }
    global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo) { }
 
}