Skip to content

Commit

Permalink
SetForceSSL Hostname parameter expects to be string not int
Browse files Browse the repository at this point in the history
  • Loading branch information
acohin committed Jan 22, 2025
1 parent d268fb4 commit 84e10b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/API/Base/PullZone/SetForceSSL.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function getHeaders(): array
public function getBody(): array
{
return [
new AbstractParameter(name: 'Hostname', type: Type::INT_TYPE, required: true),
new AbstractParameter(name: 'Hostname', type: Type::STRING_TYPE, required: true),
new AbstractParameter(name: 'ForceSSL', type: Type::BOOLEAN_TYPE, required: true),
];
}
Expand Down

0 comments on commit 84e10b0

Please sign in to comment.