Improve bunq import.

This commit is contained in:
James Cole
2018-03-19 08:17:15 +01:00
parent 6ab03bb228
commit 40787bc29a
14 changed files with 682 additions and 51 deletions

View File

@@ -71,4 +71,16 @@ class MonetaryAccountSetting extends BunqObject
{
return $this->restrictionChat;
}
/**
* @return array
*/
public function toArray(): array
{
return [
'color' => $this->color,
'default_avatar_status' => $this->defaultAvatarStatus,
'restriction_chat' => $this->restrictionChat,
];
}
}