TemplateVersionResponse.fromJson constructor 
    
      
      TemplateVersionResponse.fromJson(
 - Map<String, dynamic> json
 
)
     
    
    
  Implementation
  factory TemplateVersionResponse.fromJson(Map<String, dynamic> json) {
  return TemplateVersionResponse(
    creationDate: json['CreationDate'] as String,
    lastModifiedDate: json['LastModifiedDate'] as String,
    templateName: json['TemplateName'] as String,
    templateType: json['TemplateType'] as String,
    defaultSubstitutions: json['DefaultSubstitutions'] as String?,
    templateDescription: json['TemplateDescription'] as String?,
    version: json['Version'] as String?,
  );
}