Interface RenameGroupResponse

interface RenameGroupResponse {
    newName: string;
    oldName: string;
    renamed: number;
    success: boolean;
}

Properties

newName: string

The new name for the group

oldName: string

The old name for the group

renamed: number

The groupId for the renamed group

success: boolean

Indicates if the rename was successful

Generated using TypeDoc