public bool Equals(MetafieldListResponse other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Metafields.SequenceEqual(other.Metafields));
 }
 public override int GetHashCode()
 {
     return(Metafields != null ? Metafields.GetHashCode() : 0);
 }