blob: ca727c37740e27401679ce49505939f41dea8601 [file] [log] [blame]
package tokens
// TokenCreateResult contains the document structure returned from a Create call.
type TokenCreateResult map[string]interface{}
// TokenID retrieves a token generated by a Create call from an token creation response.
func (r TokenCreateResult) TokenID() (string, error) {
return "", nil
}