updateNewShippingQuery property

UpdateNewShippingQuery? updateNewShippingQuery

A new incoming shipping query; for bots only. Only for invoices with flexible price

Implementation

UpdateNewShippingQuery? get updateNewShippingQuery {
  if (this is UpdateNewShippingQuery) {
    return this as UpdateNewShippingQuery;
  }
  return null;
}