'How to convert uuid value to string using Azure devops GO implementation

I am using the azure devops package for go, to query a list of service endpoints.

I call the function: func (client ClientImpl) GetServiceEndpoints(ctx context.Context, args GetServiceEndpointsArgs) ([]ServiceEndpoint, error)

The return type of serviceendpoint is defined as below https://pkg.go.dev/github.com/microsoft/azure-devops-go-api/[email protected]/serviceendpoint#ServiceEndpoint

The return value I get from the module is in uuid format. How can I get this as a useable format like resourceId=90d8caad-7150-4a36-9075-597479fe72f1 enter image description here

As you can see each value in the array contains a piece of the actual ID in azure devops.

go


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source