@@ -6,16 +6,14 @@ defmodule InternalApi.ServiceAccount.CreateRequest do
6
6
org_id: String . t ( ) ,
7
7
name: String . t ( ) ,
8
8
description: String . t ( ) ,
9
- creator_id: String . t ( ) ,
10
- role_id: String . t ( )
9
+ creator_id: String . t ( )
11
10
}
12
11
13
- defstruct [ :org_id , :name , :description , :creator_id , :role_id ]
12
+ defstruct [ :org_id , :name , :description , :creator_id ]
14
13
field ( :org_id , 1 , type: :string )
15
14
field ( :name , 2 , type: :string )
16
15
field ( :description , 3 , type: :string )
17
16
field ( :creator_id , 4 , type: :string )
18
- field ( :role_id , 5 , type: :string )
19
17
end
20
18
21
19
defmodule InternalApi.ServiceAccount.CreateResponse do
@@ -93,15 +91,13 @@ defmodule InternalApi.ServiceAccount.UpdateRequest do
93
91
@ type t :: % __MODULE__ {
94
92
service_account_id: String . t ( ) ,
95
93
name: String . t ( ) ,
96
- description: String . t ( ) ,
97
- role_id: String . t ( )
94
+ description: String . t ( )
98
95
}
99
96
100
- defstruct [ :service_account_id , :name , :description , :role_id ]
97
+ defstruct [ :service_account_id , :name , :description ]
101
98
field ( :service_account_id , 1 , type: :string )
102
99
field ( :name , 2 , type: :string )
103
100
field ( :description , 3 , type: :string )
104
- field ( :role_id , 4 , type: :string )
105
101
end
106
102
107
103
defmodule InternalApi.ServiceAccount.UpdateResponse do
0 commit comments