Interface LikesIsLikedParams

interface LikesIsLikedParams {
    item_id: number;
    owner_id?: number;
    type?: LikesType;
    user_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

item_id: number

Object ID.

owner_id?: number

ID of the user or community that owns the object.

type?: LikesType
user_id?: number

User ID.

Generated using TypeDoc