<?php

namespace Microsoft\Graph\Generated\Education\Schools\Item\Users\Ref;

use Microsoft\Kiota\Abstractions\QueryParameter;

/**
 * Delete a user from a school.
*/
class RefRequestBuilderDeleteQueryParameters 
{
    /**
     * @QueryParameter("%40id")
     * @var string|null $id The delete Uri
    */
    public ?string $id = null;
    
    /**
     * Instantiates a new RefRequestBuilderDeleteQueryParameters and sets the default values.
     * @param string|null $id The delete Uri
    */
    public function __construct(?string $id = null) {
        $this->id = $id;
    }

}
