OBJECT
AccountLink
The information for a third-party account link.
link GraphQL Schema definition
1 type AccountLink { 2 3 # The account links UUID 4 : ID! 5 6 # The name displayed on the third-party account site. 7 : String 8 9 # The type of account for the account link (usually a publisher name). 10 : String! 11 12 # The current state of the account link. 13 : AccountLinkStatus! 14 15 }