Pular para conteúdo

ReservationCapacityResponse

Estado atual de capacidade de uma reserva cadastrada.

Properties

Name Type Description Notes
reservation_id str Identificador lógico da reserva no catálogo.
enabled bool Indica se a reserva está habilitada para uso.
environment str Ambiente associado à reserva.
max_concurrent_usage int Quantidade máxima de usos simultâneos permitidos.
active_usages int Quantidade atual de usos ativos da reserva.
available_capacity int Quantidade restante de capacidade disponível.
saturated bool Indica se a reserva está saturada.

Example

from pldpro_sdk.api_client.models.reservation_capacity_response import ReservationCapacityResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ReservationCapacityResponse from a JSON string
reservation_capacity_response_instance = ReservationCapacityResponse.from_json(json)
# print the JSON string representation of the object
print(ReservationCapacityResponse.to_json())

# convert the object into a dict
reservation_capacity_response_dict = reservation_capacity_response_instance.to_dict()
# create an instance of ReservationCapacityResponse from a dict
reservation_capacity_response_from_dict = ReservationCapacityResponse.from_dict(reservation_capacity_response_dict)
[Back to Model list] [Back to API list] [Back to README]