@@ -18,18 +18,22 @@ public Workspace(
1818 string companyName = default ,
1919 string ? connectPartnerName = default ,
2020 WorkspaceConnectWebviewCustomization connectWebviewCustomization = default ,
21+ bool isPublishableKeyAuthEnabled = default ,
2122 bool isSandbox = default ,
2223 bool isSuspended = default ,
2324 string name = default ,
25+ string ? publishableKey = default ,
2426 string workspaceId = default
2527 )
2628 {
2729 CompanyName = companyName ;
2830 ConnectPartnerName = connectPartnerName ;
2931 ConnectWebviewCustomization = connectWebviewCustomization ;
32+ IsPublishableKeyAuthEnabled = isPublishableKeyAuthEnabled ;
3033 IsSandbox = isSandbox ;
3134 IsSuspended = isSuspended ;
3235 Name = name ;
36+ PublishableKey = publishableKey ;
3337 WorkspaceId = workspaceId ;
3438 }
3539
@@ -46,6 +50,13 @@ public Workspace(
4650 ) ]
4751 public WorkspaceConnectWebviewCustomization ConnectWebviewCustomization { get ; set ; }
4852
53+ [ DataMember (
54+ Name = "is_publishable_key_auth_enabled" ,
55+ IsRequired = true ,
56+ EmitDefaultValue = false
57+ ) ]
58+ public bool IsPublishableKeyAuthEnabled { get ; set ; }
59+
4960 [ DataMember ( Name = "is_sandbox" , IsRequired = true , EmitDefaultValue = false ) ]
5061 public bool IsSandbox { get ; set ; }
5162
@@ -55,6 +66,9 @@ public Workspace(
5566 [ DataMember ( Name = "name" , IsRequired = true , EmitDefaultValue = false ) ]
5667 public string Name { get ; set ; }
5768
69+ [ DataMember ( Name = "publishable_key" , IsRequired = false , EmitDefaultValue = false ) ]
70+ public string ? PublishableKey { get ; set ; }
71+
5872 [ DataMember ( Name = "workspace_id" , IsRequired = true , EmitDefaultValue = false ) ]
5973 public string WorkspaceId { get ; set ; }
6074
0 commit comments