struct_seat_map.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package appmallsservice
  2. //Licensed under the Apache License, Version 2.0 (the "License");
  3. //you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software
  9. //distributed under the License is distributed on an "AS IS" BASIS,
  10. //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. //See the License for the specific language governing permissions and
  12. //limitations under the License.
  13. //
  14. // Code generated by Alibaba Cloud SDK Code Generator.
  15. // Changes may cause incorrect behavior and will be lost if the code is regenerated.
  16. // SeatMap is a nested struct in appmallsservice response
  17. type SeatMap struct {
  18. MaxCanBuy int64 `json:"MaxCanBuy" xml:"MaxCanBuy"`
  19. MaxColumn int64 `json:"MaxColumn" xml:"MaxColumn"`
  20. MaxLeftPx int64 `json:"MaxLeftPx" xml:"MaxLeftPx"`
  21. MaxRow int64 `json:"MaxRow" xml:"MaxRow"`
  22. MaxTopPx int64 `json:"MaxTopPx" xml:"MaxTopPx"`
  23. MinColumn int64 `json:"MinColumn" xml:"MinColumn"`
  24. MinLeftPx int64 `json:"MinLeftPx" xml:"MinLeftPx"`
  25. MinRow int64 `json:"MinRow" xml:"MinRow"`
  26. MinTopPx int64 `json:"MinTopPx" xml:"MinTopPx"`
  27. Notice string `json:"Notice" xml:"Notice"`
  28. Regular bool `json:"Regular" xml:"Regular"`
  29. SeatCount int64 `json:"SeatCount" xml:"SeatCount"`
  30. SoldCount int64 `json:"SoldCount" xml:"SoldCount"`
  31. TipMessage string `json:"TipMessage" xml:"TipMessage"`
  32. Seats []SeatsItem `json:"Seats" xml:"Seats"`
  33. }