You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Box.Sdk.Gen/Managers/IntegrationMappings/IIntegrationMappingsManager.cs
+71Lines changed: 71 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -83,5 +83,76 @@ public interface IIntegrationMappingsManager {
83
83
/// </param>
84
84
publicSystem.Threading.Tasks.TaskDeleteSlackIntegrationMappingByIdAsync(stringintegrationMappingId,DeleteSlackIntegrationMappingByIdHeaders?headers=default,System.Threading.CancellationToken?cancellationToken=null)=>thrownewSystem.NotImplementedException("This method needs to be implemented by the derived class before calling it.");
85
85
86
+
/// <summary>
87
+
/// Lists [Teams integration mappings](https://support.box.com/hc/en-us/articles/360044681474-Using-Box-for-Teams) in a users' enterprise.
88
+
/// You need Admin or Co-Admin role to
89
+
/// use this endpoint.
90
+
/// </summary>
91
+
/// <param name="queryParams">
92
+
/// Query parameters of getIntegrationMappingTeams method
93
+
/// </param>
94
+
/// <param name="headers">
95
+
/// Headers of getIntegrationMappingTeams method
96
+
/// </param>
97
+
/// <param name="cancellationToken">
98
+
/// Token used for request cancellation.
99
+
/// </param>
100
+
publicSystem.Threading.Tasks.Task<IntegrationMappingsTeams>GetIntegrationMappingTeamsAsync(GetIntegrationMappingTeamsQueryParams?queryParams=default,GetIntegrationMappingTeamsHeaders?headers=default,System.Threading.CancellationToken?cancellationToken=null)=>thrownewSystem.NotImplementedException("This method needs to be implemented by the derived class before calling it.");
101
+
102
+
/// <summary>
103
+
/// Creates a [Teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-Using-Box-for-Teams)
104
+
/// by mapping a Teams channel to a Box item.
105
+
/// You need Admin or Co-Admin role to
106
+
/// use this endpoint.
107
+
/// </summary>
108
+
/// <param name="requestBody">
109
+
/// Request body of createIntegrationMappingTeams method
110
+
/// </param>
111
+
/// <param name="headers">
112
+
/// Headers of createIntegrationMappingTeams method
113
+
/// </param>
114
+
/// <param name="cancellationToken">
115
+
/// Token used for request cancellation.
116
+
/// </param>
117
+
publicSystem.Threading.Tasks.Task<IntegrationMappingTeams>CreateIntegrationMappingTeamsAsync(IntegrationMappingTeamsCreateRequestrequestBody,CreateIntegrationMappingTeamsHeaders?headers=default,System.Threading.CancellationToken?cancellationToken=null)=>thrownewSystem.NotImplementedException("This method needs to be implemented by the derived class before calling it.");
118
+
119
+
/// <summary>
120
+
/// Updates a [Teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-Using-Box-for-Teams).
121
+
/// Supports updating the Box folder ID and options.
122
+
/// You need Admin or Co-Admin role to
123
+
/// use this endpoint.
124
+
/// </summary>
125
+
/// <param name="integrationMappingId">
126
+
/// An ID of an integration mapping
127
+
/// Example: "11235432"
128
+
/// </param>
129
+
/// <param name="requestBody">
130
+
/// Request body of updateIntegrationMappingTeamsById method
131
+
/// </param>
132
+
/// <param name="headers">
133
+
/// Headers of updateIntegrationMappingTeamsById method
134
+
/// </param>
135
+
/// <param name="cancellationToken">
136
+
/// Token used for request cancellation.
137
+
/// </param>
138
+
publicSystem.Threading.Tasks.Task<IntegrationMappingTeams>UpdateIntegrationMappingTeamsByIdAsync(stringintegrationMappingId,UpdateIntegrationMappingTeamsByIdRequestBody?requestBody=default,UpdateIntegrationMappingTeamsByIdHeaders?headers=default,System.Threading.CancellationToken?cancellationToken=null)=>thrownewSystem.NotImplementedException("This method needs to be implemented by the derived class before calling it.");
139
+
140
+
/// <summary>
141
+
/// Deletes a [Teams integration mapping](https://support.box.com/hc/en-us/articles/360044681474-Using-Box-for-Teams).
142
+
/// You need Admin or Co-Admin role to
143
+
/// use this endpoint.
144
+
/// </summary>
145
+
/// <param name="integrationMappingId">
146
+
/// An ID of an integration mapping
147
+
/// Example: "11235432"
148
+
/// </param>
149
+
/// <param name="headers">
150
+
/// Headers of deleteIntegrationMappingTeamsById method
151
+
/// </param>
152
+
/// <param name="cancellationToken">
153
+
/// Token used for request cancellation.
154
+
/// </param>
155
+
publicSystem.Threading.Tasks.TaskDeleteIntegrationMappingTeamsByIdAsync(stringintegrationMappingId,DeleteIntegrationMappingTeamsByIdHeaders?headers=default,System.Threading.CancellationToken?cancellationToken=null)=>thrownewSystem.NotImplementedException("This method needs to be implemented by the derived class before calling it.");
0 commit comments