forked from slackapi/java-slack-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathServiceProviderConfigsGetResponse.java
More file actions
69 lines (56 loc) · 1.46 KB
/
ServiceProviderConfigsGetResponse.java
File metadata and controls
69 lines (56 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.slack.api.scim.response;
import com.slack.api.scim.SCIMApiResponse;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.List;
@Data
@EqualsAndHashCode(callSuper = false)
public class ServiceProviderConfigsGetResponse implements SCIMApiResponse {
private List<AuthenticationScheme> authenticationSchemes;
private Patch patch;
private Bulk bulk;
private Filter filter;
private ChangePassword changePassword;
private Sort sort;
private Etag etag;
private XmlDataFormat xmlDataFormat;
@Data
public static class AuthenticationScheme {
private String type;
private String name;
private String description;
private String specUrl;
private Boolean primary;
}
@Data
public static class Patch {
private Boolean supported;
}
@Data
public static class Bulk {
private Boolean supported;
private Integer maxOperations;
private Integer maxPayloadSize;
}
@Data
public static class Filter {
private Boolean supported;
private Integer maxResults;
}
@Data
public static class ChangePassword {
private Boolean supported;
}
@Data
public static class Sort {
private Boolean supported;
}
@Data
public static class Etag {
private Boolean supported;
}
@Data
public static class XmlDataFormat {
private Boolean supported;
}
}