Interface APIGuildRoster

Guild Roster

/profile/wow/guild/{realmSlug}/{nameSlug}/roster

interface APIGuildRoster {
    _links: linksStruct;
    guild: {
        faction: factionStruct;
        id: number;
        key: hrefStruct;
        name: string;
        realm: realmStruct;
    };
    members: guildRosterMemberStruct[];
}

Properties

Properties

_links: linksStruct
guild: {
    faction: factionStruct;
    id: number;
    key: hrefStruct;
    name: string;
    realm: realmStruct;
}