Interface IStoreResponse
Response object after requesting a store.
public interface IStoreResponse
Properties
Address
Address of the store.
Address Address { get; set; }
Property Value
BillCreationInformation
All information about how bills can be created.
IList<StoreBillCreationInformation> BillCreationInformation { get; set; }
Property Value
Description
A description of the Store.
string Description { get; set; }
Property Value
DisplayName
Name of the store.
string DisplayName { get; set; }
Property Value
GooglePlacesId
Google places Id of the store.
string GooglePlacesId { get; set; }
Property Value
Id
Id of the store.
string Id { get; set; }
Property Value
IsHidden
Flag if store is hidden.
bool IsHidden { get; set; }
Property Value
LegalName
Legal name of the store.
string LegalName { get; set; }
Property Value
PhoneNumber
Phone number of the store.
string PhoneNumber { get; set; }
Property Value
StoreOpeningHours
The Stores opening hours.
ICollection<StoreOpeningHours> StoreOpeningHours { get; set; }
Property Value
Remarks
There can be multiple StoreOpeningHours for a single day of the week.
ValidFrom
DateTimeOffset ValidFrom { get; set; }
Property Value
VatId
Vat number of the store.
string VatId { get; set; }
Property Value
Website
The Store Website.
string Website { get; set; }