public GetTapeDrivesSpectraS3Request WithType(TapeDriveType? type)
 {
     this._type = type;
     if (type != null)
     {
         this.QueryParams.Add("type", type.ToString());
     }
     else
     {
         this.QueryParams.Remove("type");
     }
     return this;
 }
 public GetTapeDensityDirectivesSpectraS3Request WithDensity(TapeDriveType? density)
 {
     this._density = density;
     if (density != null)
     {
         this.QueryParams.Add("density", density.ToString());
     }
     else
     {
         this.QueryParams.Remove("density");
     }
     return this;
 }