LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
global class ConnectInviteDetail {
    global ConnectInviteDetail() { }
    global Object clone() { }
    global Integer getDateCreated() { }
    global Integer getDateInvalid() { }
    global String getId() { }
    global Slack.ConnectTeam getInvitingTeam() { }
    global Slack.ConnectUser getInvitingUser() { }
    global String getLink() { }
    global String getRecipientEmail() { }
    global String getRecipientUserId() { }
    global void setDateCreated(Integer dateCreated) { }
    global void setDateInvalid(Integer dateInvalid) { }
    global void setId(String id) { }
    global void setInvitingTeam(Slack.ConnectTeam invitingTeam) { }
    global void setInvitingUser(Slack.ConnectUser invitingUser) { }
    global void setLink(String link) { }
    global void setRecipientEmail(String recipientEmail) { }
    global void setRecipientUserId(String recipientUserId) { }
    global String toString() { }
 
}