Expand description

Utility class for converting between JSON strings and typed objects.

remarks

Provides static methods for serializing and deserializing the add project item mutation results.

Constructors§

§

new Convert(): Convert

Methods§

Source§

addProjectItemRawResultToJson(value: AddProjectItemRawResult): string

Converts an AddProjectItemRawResult object to a JSON string.

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

toAddProjectItemRawResult(json: string): AddProjectItemRawResult

Converts a JSON string to an AddProjectItemRawResult object.

example
const result = Convert.toAddProjectItemRawResult(jsonString);