Interface CloseBirthdayUser

Describes a user that had or will have a birthday soon.

interface CloseBirthdayUser {
    @type: "closeBirthdayUser";
    birthdate: Birthdate;
    user_id: number;
}

Properties

@type: "closeBirthdayUser"
birthdate: Birthdate

Birthdate of the user.

user_id: number

User identifier.