GET TourPriceGroup/OData/{userGuid}
Provides some of OData Features. Refer to following link for usage.
فراهم آوری برخی از امکانات موجود در OData. برای استفاده به لینک زیر رجوع شود
https://docs.microsoft.com/en-us/aspnet/web-api/overview/odata-support-in-aspnet-web-api/supporting-odata-query-options
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userGuid |
GUID of the User
|
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TourPriceGroupVmName | Description | Type | Additional information |
---|---|---|---|
Code |
Tour Price Type Code کد نوع قیمت گذاری تور |
integer |
None. |
Name |
Tour Price Type Name نام نوع قیمت گذاری تور |
string |
None. |
BedDescription |
Explanation about bed type توضیحاتی در مورد نوع تخت |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Code": 1, "Name": "sample string 2", "BedDescription": "sample string 3" }, { "Code": 1, "Name": "sample string 2", "BedDescription": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfTourPriceGroupVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour"> <TourPriceGroupVm> <BedDescription>sample string 3</BedDescription> <Code>1</Code> <Name>sample string 2</Name> </TourPriceGroupVm> <TourPriceGroupVm> <BedDescription>sample string 3</BedDescription> <Code>1</Code> <Name>sample string 2</Name> </TourPriceGroupVm> </ArrayOfTourPriceGroupVm>