Interface Author

Author of a building block change.

interface Author {
    email?: string;
    firstName: string;
    id?: number;
    lastName: string;
    login: string;
}

Properties

email?: string
firstName: string
id?: number

ID of the user who triggered the change. May be null if the change was triggered by a scheduled script.

lastName: string
login: string