You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,8 +35,10 @@ class RbmActionOpenUrl(BaseModel):
33
35
text: Annotated[str, Field(strict=True, max_length=25)] =Field(description="Displayed text for user to click")
34
36
postback_data: Union[Annotated[bytes, Field(strict=True, max_length=2048)], Annotated[str, Field(strict=True, max_length=2048)]] =Field(description="Base64 payload the customer receives when the reply is clicked.", alias="postbackData")
35
37
url: Annotated[str, Field(strict=True, max_length=2048)] =Field(description="The URL to open in browser.")
Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+
Do not edit the class manually.
13
+
"""# noqa: E501
14
+
15
+
16
+
from __future__ importannotations
17
+
importjson
18
+
fromenumimportEnum
19
+
fromtyping_extensionsimportSelf
20
+
21
+
22
+
classRbmOpenUrlEnum(str, Enum):
23
+
"""
24
+
Specifies how the URL should be opened on a mobile device. - `BROWSER` Opens the URL in the device's default browser. If application is not set or the device doesn’t support WebView, this option is used by default. - `WEBVIEW` Opens the URL in an in-app WebView.
25
+
"""
26
+
27
+
"""
28
+
allowed enum values
29
+
"""
30
+
BROWSER='BROWSER'
31
+
WEBVIEW='WEBVIEW'
32
+
33
+
@classmethod
34
+
deffrom_json(cls, json_str: str) ->Self:
35
+
"""Create an instance of RbmOpenUrlEnum from a JSON string"""
Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+
Do not edit the class manually.
13
+
"""# noqa: E501
14
+
15
+
16
+
from __future__ importannotations
17
+
importjson
18
+
fromenumimportEnum
19
+
fromtyping_extensionsimportSelf
20
+
21
+
22
+
classRbmWebViewEnum(str, Enum):
23
+
"""
24
+
Defines the layout of the WebView on a mobile device. It must be defined when application is set to `WEBVIEW` - `FULL` WebView takes the full screen. - `HALF` WebView takes half of the screen. - `TALL` WebView takes three-quarters of the screen.
25
+
"""
26
+
27
+
"""
28
+
allowed enum values
29
+
"""
30
+
FULL='FULL'
31
+
HALF='HALF'
32
+
TALL='TALL'
33
+
34
+
@classmethod
35
+
deffrom_json(cls, json_str: str) ->Self:
36
+
"""Create an instance of RbmWebViewEnum from a JSON string"""
0 commit comments