Expand description

Utility class for converting between JSON strings and typed objects.

remarks

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

Constructors§

§

new Convert(): Convert

Methods§

Source§

addAssigneeRawResultToJson(value: AddAssigneeRawResult): string

Converts an AddAssigneeRawResult object to a JSON string.

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

toAddAssigneeRawResult(json: string): AddAssigneeRawResult

Converts a JSON string to an AddAssigneeRawResult object.

example
const result = Convert.toAddAssigneeRawResult(jsonString);