LengthPRule
This rule determines if a password is within a desired length.
PUT {oauth_uri}/customers/{customerId}/passwordPolicy
        | Parameter | Description | Type | Syntax | 
|---|---|---|---|
min | 
                             The numerical value equal to the minimum number of allowed characters for a password.  | Number | 
                            
                         | 
max | The numerical value equal to the maximum number of allowed characters for a password. | Number | 
                            
                         | 
{
  "passwordRules": [
    {
      "type": ".LengthPRule",
      "min": 10,
      "max": 64
    }
  ]
}