Skip to content

Commit ad7fff3

Browse files
committed
MIG-13714: Generating new version of SDK
1 parent aff3068 commit ad7fff3

19 files changed

+990
-222
lines changed

src/Arbor/Model/CustomReport.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class CustomReport extends ModelBase
2323

2424
public const TRANSIENT = 'transient';
2525

26+
public const IS_ARCHIVED = 'isArchived';
27+
2628
protected $_resourceType = ResourceType::CUSTOM_REPORT;
2729

2830
/**
@@ -188,4 +190,20 @@ public function setTransient(bool $transient = null)
188190
{
189191
$this->setProperty('transient', $transient);
190192
}
193+
194+
/**
195+
* @return bool
196+
*/
197+
public function getIsArchived()
198+
{
199+
return $this->getProperty('isArchived');
200+
}
201+
202+
/**
203+
* @param bool $isArchived
204+
*/
205+
public function setIsArchived(bool $isArchived = null)
206+
{
207+
$this->setProperty('isArchived', $isArchived);
208+
}
191209
}

src/Arbor/Model/Cymru/EducationalInstitution.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class EducationalInstitution extends ModelBase
2727

2828
public const OPEN_PLAN = 'openPlan';
2929

30-
public const CENTER_NUMBER = 'centerNumber';
31-
3230
public const SPECIAL_SCHOOL_ACCOMMODATION = 'specialSchoolAccommodation';
3331

3432
public const IS_OPTED_OUT_OF_HR_PAYROLL_SLA = 'isOptedOutOfHrPayrollSla';
@@ -217,22 +215,6 @@ public function setOpenPlan(bool $openPlan = null)
217215
$this->setProperty('openPlan', $openPlan);
218216
}
219217

220-
/**
221-
* @return string
222-
*/
223-
public function getCenterNumber()
224-
{
225-
return $this->getProperty('centerNumber');
226-
}
227-
228-
/**
229-
* @param string $centerNumber
230-
*/
231-
public function setCenterNumber(string $centerNumber = null)
232-
{
233-
$this->setProperty('centerNumber', $centerNumber);
234-
}
235-
236218
/**
237219
* @return string
238220
*/

src/Arbor/Model/EducationalInstitution.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ class EducationalInstitution extends ModelBase
4343

4444
public const HAS_CHILDCARE_PLACES = 'hasChildcarePlaces';
4545

46-
public const CENTER_NUMBER = 'centerNumber';
47-
4846
public const SPECIAL_SCHOOL_ACCOMMODATION = 'specialSchoolAccommodation';
4947

5048
public const SPECIAL_SCHOOL_MAX_DAY_PUPILS = 'specialSchoolMaxDayPupils';
@@ -391,22 +389,6 @@ public function setHasChildcarePlaces(bool $hasChildcarePlaces = null)
391389
$this->setProperty('hasChildcarePlaces', $hasChildcarePlaces);
392390
}
393391

394-
/**
395-
* @return string
396-
*/
397-
public function getCenterNumber()
398-
{
399-
return $this->getProperty('centerNumber');
400-
}
401-
402-
/**
403-
* @param string $centerNumber
404-
*/
405-
public function setCenterNumber(string $centerNumber = null)
406-
{
407-
$this->setProperty('centerNumber', $centerNumber);
408-
}
409-
410392
/**
411393
* @return string
412394
*/

src/Arbor/Model/GuardianRelationshipType.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class GuardianRelationshipType extends ModelBase
2323

2424
public const IS_SIBLING = 'isSibling';
2525

26+
public const EXPORT_CODE = 'exportCode';
27+
2628
public const D00033 = 'd00033';
2729

2830
public const D00034 = 'd00034';
@@ -195,6 +197,22 @@ public function setIsSibling(bool $isSibling = null)
195197
$this->setProperty('isSibling', $isSibling);
196198
}
197199

200+
/**
201+
* @return string
202+
*/
203+
public function getExportCode()
204+
{
205+
return $this->getProperty('exportCode');
206+
}
207+
208+
/**
209+
* @param string $exportCode
210+
*/
211+
public function setExportCode(string $exportCode = null)
212+
{
213+
$this->setProperty('exportCode', $exportCode);
214+
}
215+
198216
/**
199217
* @return string
200218
*/

src/Arbor/Model/QualificationAward.php

Lines changed: 0 additions & 162 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ class QualificationAward extends ModelBase
1515

1616
public const QUALIFICATION_SCHEME = 'qualificationScheme';
1717

18-
public const QUALIFICATION_SUBJECT = 'qualificationSubject';
19-
2018
public const AWARDING_ORGANIZATION = 'awardingOrganization';
2119

2220
public const AWARD_IDENTIFIER = 'awardIdentifier';
@@ -27,22 +25,6 @@ class QualificationAward extends ModelBase
2725

2826
public const QUALIFICATION_AWARD_TYPE = 'qualificationAwardType';
2927

30-
public const QUALIFICATION_AWARD_SUBTYPE = 'qualificationAwardSubtype';
31-
32-
public const ACCREDITATION_START_DATE = 'accreditationStartDate';
33-
34-
public const ACCREDITATION_END_DATE = 'accreditationEndDate';
35-
36-
public const EFFECTIVE_DATE = 'effectiveDate';
37-
38-
public const END_DATE = 'endDate';
39-
40-
public const CERTIFICATION_END_DATE = 'certificationEndDate';
41-
42-
public const OPERATIONAL_START_DATE = 'operationalStartDate';
43-
44-
public const OPERATIONAL_END_DATE = 'operationalEndDate';
45-
4628
public const IS_LINEAR_QUALIFICATION = 'isLinearQualification';
4729

4830
public const QCA_ACCREDITATION_NUMBER = 'qcaAccreditationNumber';
@@ -159,22 +141,6 @@ public function setQualificationScheme(\Arbor\Model\QualificationScheme $qualifi
159141
$this->setProperty('qualificationScheme', $qualificationScheme);
160142
}
161143

162-
/**
163-
* @return \Arbor\Model\QualificationSubject
164-
*/
165-
public function getQualificationSubject()
166-
{
167-
return $this->getProperty('qualificationSubject');
168-
}
169-
170-
/**
171-
* @param \Arbor\Model\QualificationSubject $qualificationSubject
172-
*/
173-
public function setQualificationSubject(\Arbor\Model\QualificationSubject $qualificationSubject = null)
174-
{
175-
$this->setProperty('qualificationSubject', $qualificationSubject);
176-
}
177-
178144
/**
179145
* @return \Arbor\Model\AwardingOrganization
180146
*/
@@ -255,134 +221,6 @@ public function setQualificationAwardType(\Arbor\Model\QualificationAwardType $q
255221
$this->setProperty('qualificationAwardType', $qualificationAwardType);
256222
}
257223

258-
/**
259-
* @return \Arbor\Model\QualificationAwardSubtype
260-
*/
261-
public function getQualificationAwardSubtype()
262-
{
263-
return $this->getProperty('qualificationAwardSubtype');
264-
}
265-
266-
/**
267-
* @param \Arbor\Model\QualificationAwardSubtype $qualificationAwardSubtype
268-
*/
269-
public function setQualificationAwardSubtype(\Arbor\Model\QualificationAwardSubtype $qualificationAwardSubtype = null)
270-
{
271-
$this->setProperty('qualificationAwardSubtype', $qualificationAwardSubtype);
272-
}
273-
274-
/**
275-
* @return \DateTime
276-
*/
277-
public function getAccreditationStartDate()
278-
{
279-
return $this->getProperty('accreditationStartDate');
280-
}
281-
282-
/**
283-
* @param \DateTime $accreditationStartDate
284-
*/
285-
public function setAccreditationStartDate(\DateTime $accreditationStartDate = null)
286-
{
287-
$this->setProperty('accreditationStartDate', $accreditationStartDate);
288-
}
289-
290-
/**
291-
* @return \DateTime
292-
*/
293-
public function getAccreditationEndDate()
294-
{
295-
return $this->getProperty('accreditationEndDate');
296-
}
297-
298-
/**
299-
* @param \DateTime $accreditationEndDate
300-
*/
301-
public function setAccreditationEndDate(\DateTime $accreditationEndDate = null)
302-
{
303-
$this->setProperty('accreditationEndDate', $accreditationEndDate);
304-
}
305-
306-
/**
307-
* @return \DateTime
308-
*/
309-
public function getEffectiveDate()
310-
{
311-
return $this->getProperty('effectiveDate');
312-
}
313-
314-
/**
315-
* @param \DateTime $effectiveDate
316-
*/
317-
public function setEffectiveDate(\DateTime $effectiveDate = null)
318-
{
319-
$this->setProperty('effectiveDate', $effectiveDate);
320-
}
321-
322-
/**
323-
* @return \DateTime
324-
*/
325-
public function getEndDate()
326-
{
327-
return $this->getProperty('endDate');
328-
}
329-
330-
/**
331-
* @param \DateTime $endDate
332-
*/
333-
public function setEndDate(\DateTime $endDate = null)
334-
{
335-
$this->setProperty('endDate', $endDate);
336-
}
337-
338-
/**
339-
* @return \DateTime
340-
*/
341-
public function getCertificationEndDate()
342-
{
343-
return $this->getProperty('certificationEndDate');
344-
}
345-
346-
/**
347-
* @param \DateTime $certificationEndDate
348-
*/
349-
public function setCertificationEndDate(\DateTime $certificationEndDate = null)
350-
{
351-
$this->setProperty('certificationEndDate', $certificationEndDate);
352-
}
353-
354-
/**
355-
* @return \DateTime
356-
*/
357-
public function getOperationalStartDate()
358-
{
359-
return $this->getProperty('operationalStartDate');
360-
}
361-
362-
/**
363-
* @param \DateTime $operationalStartDate
364-
*/
365-
public function setOperationalStartDate(\DateTime $operationalStartDate = null)
366-
{
367-
$this->setProperty('operationalStartDate', $operationalStartDate);
368-
}
369-
370-
/**
371-
* @return \DateTime
372-
*/
373-
public function getOperationalEndDate()
374-
{
375-
return $this->getProperty('operationalEndDate');
376-
}
377-
378-
/**
379-
* @param \DateTime $operationalEndDate
380-
*/
381-
public function setOperationalEndDate(\DateTime $operationalEndDate = null)
382-
{
383-
$this->setProperty('operationalEndDate', $operationalEndDate);
384-
}
385-
386224
/**
387225
* @return bool
388226
*/

0 commit comments

Comments
 (0)