Phương thức CreateLease

Yêu cầu

CreateLeaseRequest

Giá trị trả về

CreateLeaseResponse

Yêu cầu:

  • lease_id phải do phần phụ trợ của đối tác tạo và đặt trong CreateLeaseResponse.
  • Bạn phải đặt lease_expiration_time trong CreateLeaseResponse.
  • Nếu trường tài nguyên được chỉ định trong CreateLeaseRequest, thì bạn phải đặt trường này trong CreateLeaseResponse và khớp với CreateLeaseRequest.
  • Bạn phải đặt và so khớp tất cả các trường khác trong CreateLeaseResponse với CreateLeaseRequest.

Mã lỗi gRPC chuẩn

  • INVALID_ARGUMENT (mã người bán, mã dịch vụ, thông tin tham chiếu của ứng dụng hoặc thông số kỹ thuật về thời gian của khung giờ không hợp lệ)
  • ALREADY_EXISTS (nếu ứng dụng đã có hợp đồng thuê cho vị trí đó)
  • RESOURCE_EXHAUSTED (nếu không có khung giờ đó)
// 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;
}