interface ChannelChangeById {
    id: number;
    update: {
        description?: SinglePatchString;
        externalId?: SinglePatchString;
        metadata?: MetadataPatch;
        name?: SinglePatchRequiredString;
        parentId?: SinglePatchRequired<number>;
    };
}

Hierarchy (view full)

Properties

Properties

id: number
update: {
    description?: SinglePatchString;
    externalId?: SinglePatchString;
    metadata?: MetadataPatch;
    name?: SinglePatchRequiredString;
    parentId?: SinglePatchRequired<number>;
}