Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Generated/Models/AppScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AppScope extends Entity implements Parsable
private ?string $type = null;

/**
* Instantiates a new AppScope and sets the default values.
* Instantiates a new appScope and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/BookingAppointment.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class BookingAppointment extends Entity implements Parsable
private ?DateTimeTimeZone $startDateTime = null;

/**
* Instantiates a new BookingAppointment and sets the default values.
* Instantiates a new bookingAppointment and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/DataPolicyOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DataPolicyOperation extends Entity implements Parsable
private ?string $userId = null;

/**
* Instantiates a new dataPolicyOperation and sets the default values.
* Instantiates a new DataPolicyOperation and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/DeviceAppManagement.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class DeviceAppManagement extends Entity implements Parsable
private ?array $windowsInformationProtectionPolicies = null;

/**
* Instantiates a new deviceAppManagement and sets the default values.
* Instantiates a new DeviceAppManagement and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/EducationAssignment.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class EducationAssignment extends Entity implements Parsable
private ?string $webUrl = null;

/**
* Instantiates a new EducationAssignment and sets the default values.
* Instantiates a new educationAssignment and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/EducationAssignmentDefaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class EducationAssignmentDefaults extends Entity implements Parsable
private ?string $notificationChannelUrl = null;

/**
* Instantiates a new EducationAssignmentDefaults and sets the default values.
* Instantiates a new educationAssignmentDefaults and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/EducationAssignmentSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class EducationAssignmentSettings extends Entity implements Parsable
private ?bool $submissionAnimationDisabled = null;

/**
* Instantiates a new EducationAssignmentSettings and sets the default values.
* Instantiates a new educationAssignmentSettings and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/EducationClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class EducationClass extends Entity implements Parsable
private ?EducationTerm $term = null;

/**
* Instantiates a new EducationClass and sets the default values.
* Instantiates a new educationClass and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
23 changes: 23 additions & 0 deletions src/Generated/Models/Invitation.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ class Invitation extends Entity implements Parsable
*/
private ?string $inviteRedirectUrl = null;

/**
* @var bool|null $resetRedemption The resetRedemption property
*/
private ?bool $resetRedemption = null;

/**
* @var bool|null $sendInvitationMessage Indicates whether an email should be sent to the user being invited. The default is false.
*/
Expand Down Expand Up @@ -84,6 +89,7 @@ public function getFieldDeserializers(): array {
'invitedUserType' => fn(ParseNode $n) => $o->setInvitedUserType($n->getStringValue()),
'inviteRedeemUrl' => fn(ParseNode $n) => $o->setInviteRedeemUrl($n->getStringValue()),
'inviteRedirectUrl' => fn(ParseNode $n) => $o->setInviteRedirectUrl($n->getStringValue()),
'resetRedemption' => fn(ParseNode $n) => $o->setResetRedemption($n->getBooleanValue()),
'sendInvitationMessage' => fn(ParseNode $n) => $o->setSendInvitationMessage($n->getBooleanValue()),
'status' => fn(ParseNode $n) => $o->setStatus($n->getStringValue()),
]);
Expand Down Expand Up @@ -145,6 +151,14 @@ public function getInviteRedirectUrl(): ?string {
return $this->inviteRedirectUrl;
}

/**
* Gets the resetRedemption property value. The resetRedemption property
* @return bool|null
*/
public function getResetRedemption(): ?bool {
return $this->resetRedemption;
}

/**
* Gets the sendInvitationMessage property value. Indicates whether an email should be sent to the user being invited. The default is false.
* @return bool|null
Expand Down Expand Up @@ -174,6 +188,7 @@ public function serialize(SerializationWriter $writer): void {
$writer->writeStringValue('invitedUserType', $this->invitedUserType);
$writer->writeStringValue('inviteRedeemUrl', $this->inviteRedeemUrl);
$writer->writeStringValue('inviteRedirectUrl', $this->inviteRedirectUrl);
$writer->writeBooleanValue('resetRedemption', $this->resetRedemption);
$writer->writeBooleanValue('sendInvitationMessage', $this->sendInvitationMessage);
$writer->writeStringValue('status', $this->status);
}
Expand Down Expand Up @@ -234,6 +249,14 @@ public function setInviteRedirectUrl(?string $value ): void {
$this->inviteRedirectUrl = $value;
}

/**
* Sets the resetRedemption property value. The resetRedemption property
* @param bool|null $value Value to set for the resetRedemption property.
*/
public function setResetRedemption(?bool $value ): void {
$this->resetRedemption = $value;
}

/**
* Sets the sendInvitationMessage property value. Indicates whether an email should be sent to the user being invited. The default is false.
* @param bool|null $value Value to set for the sendInvitationMessage property.
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/ManagedAppStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ManagedAppStatus extends Entity implements Parsable
private ?string $version = null;

/**
* Instantiates a new ManagedAppStatus and sets the default values.
* Instantiates a new managedAppStatus and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/MobileApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class MobileApp extends Entity implements Parsable
private ?MobileAppPublishingState $publishingState = null;

/**
* Instantiates a new MobileApp and sets the default values.
* Instantiates a new mobileApp and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/OrgContact.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class OrgContact extends DirectoryObject implements Parsable
private ?array $transitiveMemberOf = null;

/**
* Instantiates a new orgContact and sets the default values.
* Instantiates a new OrgContact and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/PrintConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class PrintConnector extends Entity implements Parsable
private ?DateTime $registeredDateTime = null;

/**
* Instantiates a new PrintConnector and sets the default values.
* Instantiates a new printConnector and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/PrintOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PrintOperation extends Entity implements Parsable
private ?PrintOperationStatus $status = null;

/**
* Instantiates a new PrintOperation and sets the default values.
* Instantiates a new printOperation and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/RiskDetection.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class RiskDetection extends Entity implements Parsable
private ?string $userPrincipalName = null;

/**
* Instantiates a new RiskDetection and sets the default values.
* Instantiates a new riskDetection and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/ServiceAnnouncement.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ServiceAnnouncement extends Entity implements Parsable
private ?array $messages = null;

/**
* Instantiates a new serviceAnnouncement and sets the default values.
* Instantiates a new ServiceAnnouncement and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down
2 changes: 1 addition & 1 deletion src/Generated/Models/VppToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class VppToken extends Entity implements Parsable
private ?VppTokenAccountType $vppTokenAccountType = null;

/**
* Instantiates a new VppToken and sets the default values.
* Instantiates a new vppToken and sets the default values.
*/
public function __construct() {
parent::__construct();
Expand Down