GET TourPrice/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 شناسه GUID کاربر |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TourPriceVmName | Description | Type | Additional information |
---|---|---|---|
TourCode |
Tour Code کد تور |
integer |
None. |
TimingCode |
Tour's timing Code کد تاریخ بندی تور |
integer |
None. |
OfferCode |
Offer Code کد پیشنهاد |
integer |
None. |
PriceGroupCode |
Code of the Condition Detail of an Offer کد جزییات شرایط برای یک پیشنهاد |
integer |
None. |
Price |
Price for the offer with Current Condition قیمت پیشنهاد برای شرایط جاری |
decimal number |
None. |
PriceOnline |
Price for the offer with Current Condition which is sold directly on the alaedin website قیمت پیشنهاد برای شرایط جاری که به طور مستقیم در وب سایت علاالدین به فروش می رسد |
decimal number |
None. |
Response Formats
application/json, text/json
[ { "TourCode": 1, "TimingCode": 2, "OfferCode": 3, "PriceGroupCode": 4, "Price": 1.0, "PriceOnline": 1.0 }, { "TourCode": 1, "TimingCode": 2, "OfferCode": 3, "PriceGroupCode": 4, "Price": 1.0, "PriceOnline": 1.0 } ]
application/xml, text/xml
<ArrayOfTourPriceVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour"> <TourPriceVm> <OfferCode>3</OfferCode> <Price>1</Price> <PriceGroupCode>4</PriceGroupCode> <PriceOnline>1</PriceOnline> <TimingCode>2</TimingCode> <TourCode>1</TourCode> </TourPriceVm> <TourPriceVm> <OfferCode>3</OfferCode> <Price>1</Price> <PriceGroupCode>4</PriceGroupCode> <PriceOnline>1</PriceOnline> <TimingCode>2</TimingCode> <TourCode>1</TourCode> </TourPriceVm> </ArrayOfTourPriceVm>