GET api/Vehicle/get_seat_layout_list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResultModelOfListOfSeatLayoutModel
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

Collection of SeatLayoutModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": [
    {
      "Code": 1,
      "Layout": "sample string 2",
      "RowNo": 3,
      "ColNo": 4,
      "SeatNo": 5,
      "DOT": "sample string 6",
      "PostedBy": 7,
      "StaffName": "sample string 8",
      "Index_": 9
    },
    {
      "Code": 1,
      "Layout": "sample string 2",
      "RowNo": 3,
      "ColNo": 4,
      "SeatNo": 5,
      "DOT": "sample string 6",
      "PostedBy": 7,
      "StaffName": "sample string 8",
      "Index_": 9
    }
  ]
}

application/xml, text/xml

Sample:
<ResultModelOfArrayOfSeatLayoutModelqg6OZjsc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TravelAPI.Models">
  <Data>
    <SeatLayoutModel>
      <Code>1</Code>
      <ColNo>4</ColNo>
      <DOT>sample string 6</DOT>
      <Index_>9</Index_>
      <Layout>sample string 2</Layout>
      <PostedBy>7</PostedBy>
      <RowNo>3</RowNo>
      <SeatNo>5</SeatNo>
      <StaffName>sample string 8</StaffName>
    </SeatLayoutModel>
    <SeatLayoutModel>
      <Code>1</Code>
      <ColNo>4</ColNo>
      <DOT>sample string 6</DOT>
      <Index_>9</Index_>
      <Layout>sample string 2</Layout>
      <PostedBy>7</PostedBy>
      <RowNo>3</RowNo>
      <SeatNo>5</SeatNo>
      <StaffName>sample string 8</StaffName>
    </SeatLayoutModel>
  </Data>
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfArrayOfSeatLayoutModelqg6OZjsc>