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