public static DiskTO ParseJson(dynamic json) { DiskTO result = null; if (json != null) { result = new DiskTO() { templateObjectTO = TemplateObjectTO.ParseJson(json.data), type = (string)json.type, }; } return(result); }
public static DiskTO ParseJson(dynamic json) { DiskTO result = null; if (json != null) { result = new DiskTO() { templateObjectTO = TemplateObjectTO.ParseJson(json.data), volumeObjectTO = VolumeObjectTO.ParseJson(json.data), type = (string)json.type, diskSequence = json.diskSeq }; } return result; }