File tree Expand file tree Collapse file tree 9 files changed +1414
-0
lines changed
Expand file tree Collapse file tree 9 files changed +1414
-0
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ export class AssignRoleRequest {
2+ "roles" : Array < number > ;
3+
4+ static discriminator : string | undefined = undefined ;
5+
6+ static attributeTypeMap : Array < {
7+ name : string ;
8+ baseName : string ;
9+ type : string ;
10+ } > = [
11+ {
12+ name : "roles" ,
13+ baseName : "roles" ,
14+ type : "Array<number>" ,
15+ } ,
16+ ] ;
17+
18+ static getAttributeTypeMap ( ) {
19+ return AssignRoleRequest . attributeTypeMap ;
20+ }
21+ }
Original file line number Diff line number Diff line change 1+ export class AssignedRoleResponse {
2+ "total" ?: number ;
3+ "roles" : Array < number > ;
4+ "beforeCursor" ?: string ;
5+ "previousLink" ?: string ;
6+ "afterCursor" ?: string ;
7+ "nextLink" ?: string ;
8+
9+ static discriminator : string | undefined = undefined ;
10+
11+ static attributeTypeMap : Array < {
12+ name : string ;
13+ baseName : string ;
14+ type : string ;
15+ } > = [
16+ {
17+ name : "total" ,
18+ baseName : "total" ,
19+ type : "number" ,
20+ } ,
21+ {
22+ name : "roles" ,
23+ baseName : "roles" ,
24+ type : "Array<number>" ,
25+ } ,
26+ {
27+ name : "beforeCursor" ,
28+ baseName : "beforeCursor" ,
29+ type : "string" ,
30+ } ,
31+ {
32+ name : "previousLink" ,
33+ baseName : "previousLink" ,
34+ type : "string" ,
35+ } ,
36+ {
37+ name : "afterCursor" ,
38+ baseName : "afterCursor" ,
39+ type : "string" ,
40+ } ,
41+ {
42+ name : "nextLink" ,
43+ baseName : "nextLink" ,
44+ type : "string" ,
45+ } ,
46+ ] ;
47+
48+ static getAttributeTypeMap ( ) {
49+ return AssignedRoleResponse . attributeTypeMap ;
50+ }
51+ }
Original file line number Diff line number Diff line change 1+ export class AssignUsersRequest {
2+ "users" : Array < number > ;
3+
4+ static discriminator : string | undefined = undefined ;
5+
6+ static attributeTypeMap : Array < {
7+ name : string ;
8+ baseName : string ;
9+ type : string ;
10+ } > = [
11+ {
12+ name : "users" ,
13+ baseName : "users" ,
14+ type : "Array<number>" ,
15+ } ,
16+ ] ;
17+
18+ static getAttributeTypeMap ( ) {
19+ return AssignUsersRequest . attributeTypeMap ;
20+ }
21+ }
Original file line number Diff line number Diff line change 1+ export class AssignedUsersResponse {
2+ "total" ?: number ;
3+ "users" : Array < number > ;
4+ "beforeCursor" ?: string ;
5+ "previousLink" ?: string ;
6+ "afterCursor" ?: string ;
7+ "nextLink" ?: string ;
8+
9+ static discriminator : string | undefined = undefined ;
10+
11+ static attributeTypeMap : Array < {
12+ name : string ;
13+ baseName : string ;
14+ type : string ;
15+ } > = [
16+ {
17+ name : "total" ,
18+ baseName : "total" ,
19+ type : "number" ,
20+ } ,
21+ {
22+ name : "users" ,
23+ baseName : "users" ,
24+ type : "Array<number>" ,
25+ } ,
26+ {
27+ name : "beforeCursor" ,
28+ baseName : "beforeCursor" ,
29+ type : "string" ,
30+ } ,
31+ {
32+ name : "previousLink" ,
33+ baseName : "previousLink" ,
34+ type : "string" ,
35+ } ,
36+ {
37+ name : "afterCursor" ,
38+ baseName : "afterCursor" ,
39+ type : "string" ,
40+ } ,
41+ {
42+ name : "nextLink" ,
43+ baseName : "nextLink" ,
44+ type : "string" ,
45+ } ,
46+ ] ;
47+
48+ static getAttributeTypeMap ( ) {
49+ return AssignedUsersResponse . attributeTypeMap ;
50+ }
51+ }
Original file line number Diff line number Diff line change 1+ import { listPrivilegeStatementArrayResponse } from "./listPrivilegeStatementArrayResponse" ;
2+
3+ export class listPrivilegeArrayResponse {
4+ "Version" ?: string ;
5+ "Statement" : Array < listPrivilegeStatementArrayResponse > ;
6+
7+ static discriminator : string | undefined = undefined ;
8+
9+ static attributeTypeMap : Array < {
10+ name : string ;
11+ baseName : string ;
12+ type : string ;
13+ } > = [
14+ {
15+ name : "Version" ,
16+ baseName : "Version" ,
17+ type : "string" ,
18+ } ,
19+ {
20+ name : "Statement" ,
21+ baseName : "Statement" ,
22+ type : "Array<listPrivilegeStatementArrayResponse>" ,
23+ } ,
24+ ] ;
25+
26+ static getAttributeTypeMap ( ) {
27+ return listPrivilegeArrayResponse . attributeTypeMap ;
28+ }
29+ }
Original file line number Diff line number Diff line change 1+ import { listPrivilegeArrayResponse } from "./listPrivilegeArrayResponse" ;
2+
3+ export class ListPrivilegeResponse {
4+ "id" ?: string ;
5+ "name" : string ;
6+ "description" ?: string ;
7+ "privilege" ?: listPrivilegeArrayResponse ;
8+
9+ static discriminator : string | undefined = undefined ;
10+
11+ static attributeTypeMap : Array < {
12+ name : string ;
13+ baseName : string ;
14+ type : string ;
15+ } > = [
16+ {
17+ name : "id" ,
18+ baseName : "id" ,
19+ type : "string" ,
20+ } ,
21+ {
22+ name : "name" ,
23+ baseName : "name" ,
24+ type : "string" ,
25+ } ,
26+ {
27+ name : "description" ,
28+ baseName : "description" ,
29+ type : "string" ,
30+ } ,
31+ {
32+ name : "privilege" ,
33+ baseName : "privilege" ,
34+ type : "listPrivilegeArrayResponse" ,
35+ } ,
36+ ] ;
37+
38+ static getAttributeTypeMap ( ) {
39+ return ListPrivilegeResponse . attributeTypeMap ;
40+ }
41+ }
Original file line number Diff line number Diff line change 1+ export class listPrivilegeStatementArrayResponse {
2+ "Effect" ?: string ;
3+ "Action" : Array < string > ;
4+ "Scope" ?: Array < string > ;
5+
6+ static discriminator : string | undefined = undefined ;
7+
8+ static attributeTypeMap : Array < {
9+ name : string ;
10+ baseName : string ;
11+ type : string ;
12+ } > = [
13+ {
14+ name : "Effect" ,
15+ baseName : "Effect" ,
16+ type : "string" ,
17+ } ,
18+ {
19+ name : "Action" ,
20+ baseName : "Action" ,
21+ type : "Array<string>" ,
22+ } ,
23+ {
24+ name : "Scope" ,
25+ baseName : "Scope" ,
26+ type : "Array<string>" ,
27+ } ,
28+ ] ;
29+
30+ static getAttributeTypeMap ( ) {
31+ return listPrivilegeStatementArrayResponse . attributeTypeMap ;
32+ }
33+ }
Original file line number Diff line number Diff line change 1+ export class StatusMessage {
2+ "status" ?: boolean ;
3+
4+ static discriminator : string | undefined = undefined ;
5+
6+ static attributeTypeMap : Array < {
7+ name : string ;
8+ baseName : string ;
9+ type : string ;
10+ } > = [
11+ {
12+ name : "status" ,
13+ baseName : "status" ,
14+ type : "boolean" ,
15+ } ,
16+ ] ;
17+
18+ static getAttributeTypeMap ( ) {
19+ return StatusMessage . attributeTypeMap ;
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments