bungie-net-core
Version:
An easy way to interact with the Bungie.net API
50 lines (49 loc) • 2.04 kB
TypeScript
/**
* Bungie.Net API
* These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.
*
* Contact: support@bungie.com
*
* NOTE: This class is auto generated by the bungie-net-core code generator program
* Repository: {@link https://github.com/owens1127/bungie-net-core}
* Do not edit these files manually.
*/
import { GroupType } from './GroupType';
import { ChatSecuritySetting } from './ChatSecuritySetting';
import { GroupHomepage } from './GroupHomepage';
import { MembershipOption } from './MembershipOption';
import { GroupPostPublicity } from './GroupPostPublicity';
import { GroupFeatures } from './GroupFeatures';
import { GroupV2ClanInfoAndInvestment } from './GroupV2ClanInfoAndInvestment';
/** @see {@link https://bungie-net.github.io/#/components/schemas/GroupsV2.GroupV2} */
export interface GroupV2 {
readonly groupId: string;
readonly name: string;
readonly groupType: GroupType;
readonly membershipIdCreated: string;
readonly creationDate: string;
readonly modificationDate: string;
readonly about: string;
readonly tags: string[];
readonly memberCount: number;
readonly isPublic: boolean;
readonly isPublicTopicAdminOnly: boolean;
readonly motto: string;
readonly allowChat: boolean;
readonly isDefaultPostPublic: boolean;
readonly chatSecurity: ChatSecuritySetting;
readonly locale: string;
readonly avatarImageIndex: number;
readonly homepage: GroupHomepage;
readonly membershipOption: MembershipOption;
readonly defaultPublicity: GroupPostPublicity;
readonly theme: string;
readonly bannerPath: string;
readonly avatarPath: string;
readonly conversationId: string;
readonly enableInvitationMessagingForAdmins: boolean;
readonly banExpireDate?: string;
readonly features: GroupFeatures;
readonly remoteGroupId?: string;
readonly clanInfo: GroupV2ClanInfoAndInvestment;
}