File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
packages/cubejs-api-gateway
rust/cubesql/cubeclient/src/models Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,8 @@ components:
125125 properties :
126126 name :
127127 type : " string"
128+ title :
129+ type : " string"
128130 description :
129131 type : " string"
130132 type :
Original file line number Diff line number Diff line change 1212pub struct V1CubeMetaDimension {
1313 #[ serde( rename = "name" ) ]
1414 pub name : String ,
15+ #[ serde( rename = "title" , skip_serializing_if = "Option::is_none" ) ]
16+ pub title : Option < String > ,
1517 #[ serde( rename = "description" , skip_serializing_if = "Option::is_none" ) ]
1618 pub description : Option < String > ,
1719 #[ serde( rename = "type" ) ]
@@ -29,6 +31,7 @@ impl V1CubeMetaDimension {
2931 pub fn new ( name : String , r#type : String ) -> V1CubeMetaDimension {
3032 V1CubeMetaDimension {
3133 name,
34+ title : None ,
3235 description : None ,
3336 r#type,
3437 alias_member : None ,
You can’t perform that action at this time.
0 commit comments