Required role: | Consumer |
GET | /admessage/GetStarredAdMessageList |
---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class AdMessageDto
{
open var id:Long? = null
open var guid:UUID? = null
open var title:String? = null
open var startAt:Date? = null
open var stopAt:Date? = null
open var publishAt:Date? = null
open var imageUrls:ArrayList<ImageUrls> = ArrayList<ImageUrls>()
open var place:PlaceBasicApiDto? = null
open var detailsUnion:AdMessageDetailsUnion? = null
open var starredCount:Long? = null
}
open class ImageUrls
{
open var preview:String? = null
open var small:String? = null
open var medium:String? = null
open var large:String? = null
}
open class PlaceBasicApiDto
{
open var id:Long? = null
open var guid:UUID? = null
open var overview:String? = null
open var name:String? = null
open var longitude:Float? = null
open var latitude:Float? = null
open var claimed:Boolean? = null
open var organizationNumber:String? = null
open var countryCode:String? = null
open var openingHours:OpeningHours? = null
open var wheelchairAccessible:Boolean? = null
open var wifi:Boolean? = null
open var outdoorSeating:Boolean? = null
open var saveFoodAndMoney:Boolean? = null
open var placeType:PlaceType? = null
open var priceMainDish:PriceMainDishApiDto? = null
open var timeZoneDto:TimeZoneDto? = null
open var businessId:Long? = null
open var contact:PlaceContact? = null
open var address:PlaceAddress? = null
open var categories:ArrayList<CategoryTreeApiDto> = ArrayList<CategoryTreeApiDto>()
open var logoUrl:ImageUrls? = null
open var imageUrl:ImageUrls? = null
open var wearPriceProfiles:ArrayList<WearPriceProfileEsDto> = ArrayList<WearPriceProfileEsDto>()
open var brands:ArrayList<PlaceSelectedBrandApiDto> = ArrayList<PlaceSelectedBrandApiDto>()
open var floor:String? = null
}
open class OpeningHours
{
open var weekly:WeeklyOpeningHours? = null
}
open class WeeklyOpeningHours
{
open var monday:OpeningHour? = null
open var tuesday:OpeningHour? = null
open var wednesday:OpeningHour? = null
open var thursday:OpeningHour? = null
open var friday:OpeningHour? = null
open var saturday:OpeningHour? = null
open var sunday:OpeningHour? = null
}
open class OpeningHour
{
open var openAtHour:Int? = null
open var openAtMinute:Int? = null
open var closeAtHour:Int? = null
open var closeAtMinute:Int? = null
}
enum class PlaceType
{
Mall,
Regular,
}
open class PriceMainDishApiDto
{
open var title:String? = null
open var slug:PriceMainDish? = null
}
enum class PriceMainDish
{
Value,
Medium,
High,
FineDining,
}
open class TimeZoneDto
{
open var baseUtcOffset:TimeSpan? = null
open var daylightName:String? = null
open var displayName:String? = null
open var id:String? = null
open var standardName:String? = null
open var supportsDaylightSavingTime:Boolean? = null
}
open class PlaceContact
{
open var phone:String? = null
open var email:String? = null
open var website:String? = null
open var webShop:String? = null
}
open class PlaceAddress
{
open var street:String? = null
open var postalCode:String? = null
open var region:String? = null
open var countryCode:String? = null
}
open class CategoryTreeApiDto
{
open var name:String? = null
open var slug:String? = null
open var absoluteSlug:String? = null
open var imageUrl:String? = null
open var allImageUrl:String? = null
open var iconImageUrl:String? = null
open var position:Int? = null
open var children:ArrayList<CategoryTreeApiDto> = ArrayList<CategoryTreeApiDto>()
}
open class WearPriceProfileEsDto
{
open var slug:String? = null
open var label:String? = null
}
open class PlaceSelectedBrandApiDto
{
open var brand:BrandApiDto? = null
open var categoryAbsoluteSlugs:ArrayList<String> = ArrayList<String>()
open var placeCustomBrand:PlaceCustomBrandApiDto? = null
}
open class BrandApiDto
{
open var name:String? = null
}
open class PlaceCustomBrandApiDto
{
open var name:String? = null
}
open class AdMessageDetailsUnion
{
open var percentageOnAllMerchandise:AdMessageDetailsPercentageDiscountOnAllMerchandise? = null
open var percentageRangeOnAllMerchandise:AdMessageDetailsPercentageDiscountRangeOnAllMerchandise? = null
open var percentageOnSelectedMerchandise:AdMessageDetailsPercentageDiscountOnSelectedMerchandise? = null
open var absoluteOnSelectedMerchandise:AdMessageDetailsAbsoluteDiscountOnSelectedMerchandise? = null
open var absoluteRangeOnAllMerchandise:AdMessageDetailsAbsoluteDiscountRangeOnAllMerchandise? = null
open var totalAmountOverXgivesYdiscount:AdMessageDetailsTotalAmountOverXgivesYdiscount? = null
open var xforY:AdMessageDetailsXforYdiscount? = null
open var newArrivals:AdMessageDetailsNewArrivals? = null
open var freetext:AdMessageDetailsFreetext? = null
open var todaysBreakFastOffer:AdMessageDetailsTodaysBreakFastOffer? = null
open var todaysLunchOffer:AdMessageDetailsTodaysLunchOffer? = null
open var todaysDinnerOffer:AdMessageDetailsTodaysDinnerOffer? = null
open var saveFoodAndMoney:AdMessageDetailsSaveFoodAndMoney? = null
open var percentageOfYourFoodBill:AdMessageDetailsPercentageOffYourFoodBill? = null
open var happyHour:AdMessageDetailsHappyHour? = null
open var someFreeTablesLeftToday:AdMessageDetailsSomeFreeTablesLeftToday? = null
open var twoDishesForThePriceOfOne:AdMessageDetailsTwoDishesForThePriceOfOne? = null
}
open class AdMessageDetailsPercentageDiscountOnAllMerchandise : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsBase
{
open var description:String? = null
open var moreInformation:ArrayList<String> = ArrayList<String>()
}
open class AdMessageDetailsPercentageDiscountRangeOnAllMerchandise : AdMessageDetailsBase()
{
open var start:Double? = null
open var stop:Double? = null
}
open class AdMessageDetailsPercentageDiscountOnSelectedMerchandise : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsAbsoluteDiscountOnSelectedMerchandise : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsAbsoluteDiscountRangeOnAllMerchandise : AdMessageDetailsBase()
{
open var start:Double? = null
open var stop:Double? = null
}
open class AdMessageDetailsTotalAmountOverXgivesYdiscount : AdMessageDetailsBase()
{
open var ifTotalAmountMoreThanX:Double? = null
open var thenYouGetDiscountPercentageY:Double? = null
}
open class AdMessageDetailsXforYdiscount : AdMessageDetailsBase()
{
open var ifYouBuyX:Int? = null
open var thenYouGetY:Int? = null
}
open class AdMessageDetailsNewArrivals : AdMessageDetailsBase()
{
}
open class AdMessageDetailsFreetext : AdMessageDetailsBase()
{
open var title:String? = null
}
open class AdMessageDetailsTodaysBreakFastOffer : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsTodaysLunchOffer : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsTodaysDinnerOffer : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsSaveFoodAndMoney : AdMessageDetailsBase()
{
open var value:Double? = null
}
open class AdMessageDetailsPercentageOffYourFoodBill : AdMessageDetailsBase()
{
open var percentage:Double? = null
}
open class AdMessageDetailsHappyHour : AdMessageDetailsBase()
{
}
open class AdMessageDetailsSomeFreeTablesLeftToday : AdMessageDetailsBase()
{
}
open class AdMessageDetailsTwoDishesForThePriceOfOne : AdMessageDetailsBase()
{
}
Kotlin GetStarredAdMessageListRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /admessage/GetStarredAdMessageList HTTP/1.1 Host: unstable-consumer-api.brovs.com Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <GetStarredAdMessageListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsumerApi.Dto"> <StarredList> <StarredDto> <AdMessage xmlns:d4p1="http://schemas.datacontract.org/2004/07/Api.Dto"> <d4p1:DetailsUnion xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:AbsoluteOnSelectedMerchandise> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:AbsoluteOnSelectedMerchandise> <d5p1:AbsoluteRangeOnAllMerchandise> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Start>0</d5p1:Start> <d5p1:Stop>0</d5p1:Stop> </d5p1:AbsoluteRangeOnAllMerchandise> <d5p1:Freetext> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Title>String</d5p1:Title> </d5p1:Freetext> <d5p1:HappyHour> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> </d5p1:HappyHour> <d5p1:NewArrivals> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> </d5p1:NewArrivals> <d5p1:PercentageOfYourFoodBill> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Percentage>0</d5p1:Percentage> </d5p1:PercentageOfYourFoodBill> <d5p1:PercentageOnAllMerchandise> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:PercentageOnAllMerchandise> <d5p1:PercentageOnSelectedMerchandise> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:PercentageOnSelectedMerchandise> <d5p1:PercentageRangeOnAllMerchandise> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Start>0</d5p1:Start> <d5p1:Stop>0</d5p1:Stop> </d5p1:PercentageRangeOnAllMerchandise> <d5p1:SaveFoodAndMoney> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:SaveFoodAndMoney> <d5p1:SomeFreeTablesLeftToday> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> </d5p1:SomeFreeTablesLeftToday> <d5p1:TodaysBreakFastOffer> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:TodaysBreakFastOffer> <d5p1:TodaysDinnerOffer> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:TodaysDinnerOffer> <d5p1:TodaysLunchOffer> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:Value>0</d5p1:Value> </d5p1:TodaysLunchOffer> <d5p1:TotalAmountOverXgivesYdiscount> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:IfTotalAmountMoreThanX>0</d5p1:IfTotalAmountMoreThanX> <d5p1:ThenYouGetDiscountPercentageY>0</d5p1:ThenYouGetDiscountPercentageY> </d5p1:TotalAmountOverXgivesYdiscount> <d5p1:TwoDishesForThePriceOfOne> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> </d5p1:TwoDishesForThePriceOfOne> <d5p1:XforY> <d5p1:Description>String</d5p1:Description> <d5p1:MoreInformation xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d5p1:MoreInformation> <d5p1:IfYouBuyX>0</d5p1:IfYouBuyX> <d5p1:ThenYouGetY>0</d5p1:ThenYouGetY> </d5p1:XforY> </d4p1:DetailsUnion> <d4p1:Guid>00000000-0000-0000-0000-000000000000</d4p1:Guid> <d4p1:Id>0</d4p1:Id> <d4p1:ImageUrls xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:ImageUrls> <d5p1:Large>String</d5p1:Large> <d5p1:Medium>String</d5p1:Medium> <d5p1:Preview>String</d5p1:Preview> <d5p1:Small>String</d5p1:Small> </d5p1:ImageUrls> </d4p1:ImageUrls> <d4p1:Place> <d4p1:Address xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:CountryCode>String</d6p1:CountryCode> <d6p1:PostalCode>String</d6p1:PostalCode> <d6p1:Region>String</d6p1:Region> <d6p1:Street>String</d6p1:Street> </d4p1:Address> <d4p1:Brands> <d4p1:PlaceSelectedBrandApiDto> <d4p1:Brand> <d4p1:Name>String</d4p1:Name> </d4p1:Brand> <d4p1:CategoryAbsoluteSlugs xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d8p1:string>String</d8p1:string> </d4p1:CategoryAbsoluteSlugs> <d4p1:PlaceCustomBrand> <d4p1:Name>String</d4p1:Name> </d4p1:PlaceCustomBrand> </d4p1:PlaceSelectedBrandApiDto> </d4p1:Brands> <d4p1:BusinessId>0</d4p1:BusinessId> <d4p1:Categories> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children i:nil="true" /> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Categories> <d4p1:Claimed>false</d4p1:Claimed> <d4p1:Contact xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Email>String</d6p1:Email> <d6p1:Phone>String</d6p1:Phone> <d6p1:WebShop>String</d6p1:WebShop> <d6p1:Website>String</d6p1:Website> </d4p1:Contact> <d4p1:CountryCode>String</d4p1:CountryCode> <d4p1:Floor>String</d4p1:Floor> <d4p1:Guid>00000000-0000-0000-0000-000000000000</d4p1:Guid> <d4p1:Id>0</d4p1:Id> <d4p1:ImageUrl xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Large>String</d6p1:Large> <d6p1:Medium>String</d6p1:Medium> <d6p1:Preview>String</d6p1:Preview> <d6p1:Small>String</d6p1:Small> </d4p1:ImageUrl> <d4p1:Latitude>0</d4p1:Latitude> <d4p1:LogoUrl xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Large>String</d6p1:Large> <d6p1:Medium>String</d6p1:Medium> <d6p1:Preview>String</d6p1:Preview> <d6p1:Small>String</d6p1:Small> </d4p1:LogoUrl> <d4p1:Longitude>0</d4p1:Longitude> <d4p1:Name>String</d4p1:Name> <d4p1:OpeningHours xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Weekly> <d6p1:Friday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Friday> <d6p1:Monday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Monday> <d6p1:Saturday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Saturday> <d6p1:Sunday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Sunday> <d6p1:Thursday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Thursday> <d6p1:Tuesday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Tuesday> <d6p1:Wednesday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Wednesday> </d6p1:Weekly> </d4p1:OpeningHours> <d4p1:OrganizationNumber>String</d4p1:OrganizationNumber> <d4p1:OutdoorSeating>false</d4p1:OutdoorSeating> <d4p1:Overview>String</d4p1:Overview> <d4p1:PlaceType>Mall</d4p1:PlaceType> <d4p1:PriceMainDish> <d4p1:Slug>Value</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:PriceMainDish> <d4p1:SaveFoodAndMoney>false</d4p1:SaveFoodAndMoney> <d4p1:TimeZoneDto xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:BaseUtcOffset>PT0S</d6p1:BaseUtcOffset> <d6p1:DaylightName>String</d6p1:DaylightName> <d6p1:DisplayName>String</d6p1:DisplayName> <d6p1:Id>String</d6p1:Id> <d6p1:StandardName>String</d6p1:StandardName> <d6p1:SupportsDaylightSavingTime>false</d6p1:SupportsDaylightSavingTime> </d4p1:TimeZoneDto> <d4p1:WearPriceProfiles> <d4p1:WearPriceProfileEsDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:WearPriceProfileEsDto> </d4p1:WearPriceProfiles> <d4p1:WheelchairAccessible>false</d4p1:WheelchairAccessible> <d4p1:Wifi>false</d4p1:Wifi> </d4p1:Place> <d4p1:PublishAt xmlns:d5p1="http://schemas.datacontract.org/2004/07/System"> <d5p1:DateTime>0001-01-01T00:00:00Z</d5p1:DateTime> <d5p1:OffsetMinutes>0</d5p1:OffsetMinutes> </d4p1:PublishAt> <d4p1:StarredCount>0</d4p1:StarredCount> <d4p1:StartAt xmlns:d5p1="http://schemas.datacontract.org/2004/07/System"> <d5p1:DateTime>0001-01-01T00:00:00Z</d5p1:DateTime> <d5p1:OffsetMinutes>0</d5p1:OffsetMinutes> </d4p1:StartAt> <d4p1:StopAt xmlns:d5p1="http://schemas.datacontract.org/2004/07/System"> <d5p1:DateTime>0001-01-01T00:00:00Z</d5p1:DateTime> <d5p1:OffsetMinutes>0</d5p1:OffsetMinutes> </d4p1:StopAt> <d4p1:Title>String</d4p1:Title> </AdMessage> </StarredDto> </StarredList> </GetStarredAdMessageListResponse>