interface CustomerChangePassword {
    currentPassword: string;
    id: string;
    newPassword: string;
    version: number;
}

Properties

currentPassword: string

Current password of the Customer.

If the current password does not match, an [InvalidCurrentPassword](ctp:api:type:InvalidCurrentPasswordError) error is returned.
id: string

Unique identifier of the Customer.

newPassword: string

New password to be set.

version: number

Expected version of the Customer on which the changes should be applied.

Generated using TypeDoc