soundcloud-api-ts - v1.9.0
    Preparing search index...

    Interface SoundCloudComment

    Represents a comment on a SoundCloud track.

    interface SoundCloudComment {
        body: string;
        created_at: string;
        id: number;
        kind: string;
        timestamp: number;
        track_urn: string;
        uri: string;
        urn: string;
        user: SoundCloudCommentUser;
        user_urn: string;
    }
    Index

    Properties

    body: string

    The comment text body

    created_at: string

    ISO 8601 timestamp of when the comment was posted

    id: number

    The comment's unique numeric ID

    kind: string

    Resource type, always "comment"

    timestamp: number

    Position in the track's waveform in milliseconds where the comment was placed

    track_urn: string

    URN of the track this comment belongs to

    uri: string

    API resource URI for this comment

    urn: string

    URN identifier for this comment

    The user who posted this comment

    user_urn: string

    URN of the user who posted this comment