Expand description

Utility class for converting between JSON strings and typed objects.

remarks

Provides static methods for serializing and deserializing the get project ID query results.

Constructors§

§

new Convert(): Convert

Methods§

Source§

getProjectIDRawResultToJson(value: GetProjectIDRawResult): string

Converts a GetProjectIDRawResult object to a JSON string.

example
const jsonString = Convert.getProjectIDRawResultToJson(result);
Source§

toGetProjectIDRawResult(json: string): GetProjectIDRawResult

Converts a JSON string to a GetProjectIDRawResult object.

example
const result = Convert.toGetProjectIDRawResult(jsonString);