"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Guild = void 0; const Base_1 = require("./Base"); class Guild extends Base_1.Base { /** * guild id */ id; /** * guild name (2-100 characters, excluding trailing and leading whitespace) */ name; icon_url; /** * guild member list * (always an empty array) * @deprecated */ members = []; // Always an empty array /** * the vanity url code for the guild */ vanity_url_code; constructor(client, props) { super(client); Object.assign(this, props); this.id = props.id; this.name = props.name; this.icon_url = props.icon_url; this.vanity_url_code = props.vanity_url_code; } } exports.Guild = Guild;