public PatchRequestBuilder AddOperation(PatchOperation operation)
        {
            if (operation == null)
            {
                throw new ArgumentNullException(nameof(operation));
            }

            _operations.Add(operation);
            return(this);
        }
 public PatchOperationBuilder()
 {
     _patchOperation = new PatchOperation();
 }