Skip to content

Commit 580de2c

Browse files
author
Alexander Turiak
committed
Fixed the Int32List DataType usage
1 parent 8acb23c commit 580de2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DataTypes/ApiProgramEnrolment.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* @property XsInt ProgramId
1818
* @property ApiProgramEnrolmentStatus Status
1919
* @property XsDateTime DateCreated
20-
* @property XsInt Contacts
21-
* @property XsInt AddressBooks
20+
* @property Int32List Contacts
21+
* @property Int32List AddressBooks
2222
*/
2323
final class ApiProgramEnrolment extends JsonObject
2424
{
@@ -29,8 +29,8 @@ protected function getProperties()
2929
'ProgramId' => 'XsInt',
3030
'Status' => 'ApiProgramEnrolmentStatus',
3131
'DateCreated' => 'XsDateTime',
32-
'Contacts' => 'XsInt',
33-
'AddressBooks' => 'XsInt'
32+
'Contacts' => 'Int32List',
33+
'AddressBooks' => 'Int32List'
3434
);
3535
}
3636

0 commit comments

Comments
 (0)