共用方式為


ReservationToReturn Constructors

Definition

Overloads

ReservationToReturn()

Initializes a new instance of the ReservationToReturn class.

ReservationToReturn(String, Nullable<Int32>)

Initializes a new instance of the ReservationToReturn class.

ReservationToReturn()

Initializes a new instance of the ReservationToReturn class.

public ReservationToReturn ();
Public Sub New ()

Applies to

ReservationToReturn(String, Nullable<Int32>)

Initializes a new instance of the ReservationToReturn class.

public ReservationToReturn (string reservationId = default, int? quantity = default);
new Microsoft.Azure.Management.Reservations.Models.ReservationToReturn : string * Nullable<int> -> Microsoft.Azure.Management.Reservations.Models.ReservationToReturn
Public Sub New (Optional reservationId As String = Nothing, Optional quantity As Nullable(Of Integer) = Nothing)

Parameters

reservationId
String

Fully qualified identifier of the Reservation being returned

quantity
Nullable<Int32>

Quantity to be returned. Must be greater than zero.

Applies to