github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/identity/federatedauth/protocols/results.go (about)

     1  package protocols
     2  
     3  type IdentityProtocol struct {
     4  	ID        string        `json:"id"`
     5  	MappingID string        `json:"mapping_id"`
     6  	Links     ProtocolLinks `json:"links"`
     7  }
     8  
     9  type ProtocolLinks struct {
    10  	IdentityProvider string `json:"identity_provider"`
    11  	Self             string `json:"self"`
    12  }