Interface CustomSsaiDescriptionSerializer
-
- All Implemented Interfaces:
public interface CustomSsaiDescriptionSerializer
A serializer for a CustomSsaiDescription.
-
-
Method Summary
Modifier and Type Method Description abstract CustomSsaiDescription
fromJson(String json)
Reads a CustomSsaiDescription from the given JSON string. abstract String
toJson(CustomSsaiDescription value)
Writes the given CustomSsaiDescription as a JSON string. -
-
Method Detail
-
fromJson
abstract CustomSsaiDescription fromJson(String json)
Reads a CustomSsaiDescription from the given JSON string.
The customIntegration property of the returned object must match the integration with which this serializer was registered.
-
toJson
abstract String toJson(CustomSsaiDescription value)
Writes the given CustomSsaiDescription as a JSON string.
The returned JSON string must have a string property named
"integration"
that contains value's customIntegrationId.
-
-
-
-