public FlavorAssetGetUrlRequestBuilder(string id, int storageId, bool forceProxy, FlavorAssetUrlOptions options)
     : this()
 {
     this.Id         = id;
     this.StorageId  = storageId;
     this.ForceProxy = forceProxy;
     this.Options    = options;
 }
 public static FlavorAssetGetUrlRequestBuilder GetUrl(string id, int storageId = Int32.MinValue, bool forceProxy = false, FlavorAssetUrlOptions options = null)
 {
     return(new FlavorAssetGetUrlRequestBuilder(id, storageId, forceProxy, options));
 }