Interface Character

interface Character {
    characterId: bigint;
    handle: string;
    metadata?: CharacterMetadata;
    noteCount: bigint;
    socialToken: string;
    uri: string;
}

Properties

characterId: bigint

The id of this character.

handle: string

The handle of this character.

The metadata of this character.

noteCount: bigint

The count of notes this character posted.

socialToken: string

The social token of this character.

uri: string

The metadata URI of this character.

Generated using TypeDoc