public BaseEntryUpdateContentRequestBuilder(string entryId, Resource resource, int conversionProfileId, EntryReplacementOptions advancedOptions)
     : this()
 {
     this.EntryId             = entryId;
     this.Resource            = resource;
     this.ConversionProfileId = conversionProfileId;
     this.AdvancedOptions     = advancedOptions;
 }
 public static BaseEntryUpdateContentRequestBuilder UpdateContent(string entryId, Resource resource, int conversionProfileId = Int32.MinValue, EntryReplacementOptions advancedOptions = null)
 {
     return(new BaseEntryUpdateContentRequestBuilder(entryId, resource, conversionProfileId, advancedOptions));
 }