Expand description

Utility class for converting between JSON strings and typed objects.

remarks

Provides static methods for serializing and deserializing the list opened projects query results.

Constructors§

§

new Convert(): Convert

Methods§

Source§

listOpenedProjectsInOrgRawResultToJson(
    value: ListOpenedProjectsInOrgRawResult,
): string

Converts a ListOpenedProjectsInOrgRawResult object to a JSON string.

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

toListOpenedProjectsInOrgRawResult(
    json: string,
): ListOpenedProjectsInOrgRawResult

Converts a JSON string to a ListOpenedProjectsInOrgRawResult object.

example
const result = Convert.toListOpenedProjectsInOrgRawResult(jsonString);