public GetTitleTagsPatchConfigurationResult GetTitleTagsPatchConfiguration(
     GetTitleTagsPatchConfigurationRequest request)
 {
     return new GetTitleTagsPatchConfigurationResult
     {
         Result = new ServiceResult<TitleTagsPatchConfiguration>
         {
             Data = new TitleTagsPatchConfiguration
             {
                 CombinationHash = "",
                 Tags = new List<Tag>
                 {
                     new Tag
                     {
                         Name = "TagName",
                         Type = 0,
                         StringValue = "",
                         IntegerValue = 0,
                         FloatValue = 0
                     }
                 }
             }
         }
     };
 }
 public GetTitleTagsPatchConfigurationResult GetTitleTagsPatchConfiguration(
     GetTitleTagsPatchConfigurationRequest request)
 {
     return(new GetTitleTagsPatchConfigurationResult
     {
         Result = new ServiceResult <TitleTagsPatchConfiguration>
         {
             Data = new TitleTagsPatchConfiguration
             {
                 CombinationHash = "",
                 Tags = new List <Tag>
                 {
                     new Tag
                     {
                         Name = "TagName",
                         Type = 0,
                         StringValue = "",
                         IntegerValue = 0,
                         FloatValue = 0
                     }
                 }
             }
         }
     });
 }