Function: getMemberCustomBoardBackground()
ts
function getMemberCustomBoardBackground(client, parameters): Promise<{
attribution?: | {
license?: string | null;
name?: string | null;
url?: string | null;
}
| null;
bottomColor?: string | null;
brightness?: string | null;
color?: string | null;
darkColor?: string | null;
darkFullSizeUrl?: string | null;
emoji?: string | null;
fullSizeUrl?: string | null;
id: string;
pack?: | {
name?: string;
}
| null;
scaled?: object[];
tile?: boolean;
topColor?: string | null;
type?: string | null;
version?: number;
}>;Defined in: api/members.ts:378
Get a specific custom board background
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { id: unknown; idBackground: unknown; } | - |
parameters.id | unknown | The ID or username of the member |
parameters.idBackground | unknown | The ID of the custom background |
Returns
Promise<{ attribution?: | { license?: string | null; name?: string | null; url?: string | null; } | null; bottomColor?: string | null; brightness?: string | null; color?: string | null; darkColor?: string | null; darkFullSizeUrl?: string | null; emoji?: string | null; fullSizeUrl?: string | null; id: string; pack?: | { name?: string; } | null; scaled?: object[]; tile?: boolean; topColor?: string | null; type?: string | null; version?: number; }>