Go中的128位浮点数-等效于C#的“十进制”类型

Simple question: is there an equivalent of C#'s decimal type in the Go standard library?

I intend to use this type to interface with an OData API that returns decimals at some endpoints, and from what I read, complex128 is not suitable for this behavior (the storage of it is different than that of floats)

The standard library's math/big includes a Float type:

A nonzero finite Float represents a multi-precision floating point number