Método CreateLease

Solicitação

CreateLeaseRequest

Valor de retorno

CreateLeaseResponse

Requisitos:

  • O lease_id precisa ser criado pelo back-end do parceiro e definido no CreateLeaseResponse.
  • O lease_expiration_time precisa ser definido no CreateLeaseResponse.
  • Se o campo de recursos for especificado no CreateLeaseRequest, ele terá que ser definido no CreateLeaseResponse e ser igual ao CreateLeaseRequest.
  • Todos os outros campos no CreateLeaseResponse precisam ser definidos e estar iguais ao CreateLeaseRequest.

Códigos de erro canônicos de gRPC

  • INVALID_ARGUMENT (o ID do comerciante, a referência do cliente, a especificação de espaço ou o código do serviço é inválido)
  • ALREADY_EXISTS (se o cliente já tiver uma locação no espaço)
  • RESOURCE_EXHAUSTED (se o espaço não estiver disponível)
// Request to create a [ext.maps.booking.partner.v0.Lease] for a slot in the
// inventory.  The expiration time in the returned Lease may be modified by the
// backend, e.g. if the requested lease period is too long.
message CreateLeaseRequest {
  // The lease to be created with information about the appointment slot
  Lease lease = 1;
}

// Response for the [ext.maps.booking.partner.v0.CreateLease] RPC with the
// created [ext.maps.booking.partner.v0.Lease]
message CreateLeaseResponse {
  // The created [ext.maps.booking.partner.v0.Lease]
  Lease lease = 1;
}