Expand description

Utility class for converting between JSON strings and typed objects.

remarks

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

Constructors§

§

new Convert(): Convert

Methods§

Source§

listTeamsInOrgRawResultToJson(value: ListTeamsInOrgRawResult): string

Converts a ListTeamsInOrgRawResult object to a JSON string.

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

toListTeamsInOrgRawResult(json: string): ListTeamsInOrgRawResult

Converts a JSON string to a ListTeamsInOrgRawResult object.

example
const result = Convert.toListTeamsInOrgRawResult(jsonString);