在 Android 客户端上获取 python Cloud Endpoint Enum 值
Getting python Cloud Endpoint Enum values on an Android client
我有一个从 Cloud Endpoints Enum and is included in a Message 继承的 python class,用于传输到 Android 客户端。
class Status(messages.Enum):
SUCCESS = 1
NOT_IN_MATCH = 2
ALREADY_MATCHED = 3
FAILURE = 4
有没有办法在 Android 客户端中获取这些常量字符串 ("SUCCESS"、"NOT_IN_MATCH"、"ALREADY_MATCHED"、"FAILURE")?当我使用 get_client_lib
.
时,我在生成的 Java 源代码中的任何地方都看不到它们
注意:我在Java中看到给出了解决方案。这在使用 python Cloud Endpoints 时不适用。
根据 Google Cloud Endoints 开发人员 目前的说法。
Unfortunately, there currently isn't [a way to get these constant strings in the Android client].
我有一个从 Cloud Endpoints Enum and is included in a Message 继承的 python class,用于传输到 Android 客户端。
class Status(messages.Enum):
SUCCESS = 1
NOT_IN_MATCH = 2
ALREADY_MATCHED = 3
FAILURE = 4
有没有办法在 Android 客户端中获取这些常量字符串 ("SUCCESS"、"NOT_IN_MATCH"、"ALREADY_MATCHED"、"FAILURE")?当我使用 get_client_lib
.
注意:我在Java中看到
根据 Google Cloud Endoints 开发人员
Unfortunately, there currently isn't [a way to get these constant strings in the Android client].