Input$PointOfSaleInput constructor
Input$PointOfSaleInput({
- String? name,
- String? title,
- String? subtitle,
- String? description,
- List<
String> ? tags, - String? brandColor,
- String? reference,
- bool? published,
- bool? aggregator,
- Input$PictureInput? picture,
- List<
Input$PictureInput> ? outsidePictures, - List<
Input$PictureInput> ? insidePictures, - Input$OpeningHoursInput? openingHours,
- List<
Input$SpecilOfferInput> ? specialOffers, - List<
Input$FullAddressInput> ? locations, - List<
String> ? email, - List<
String> ? contactEmails, - List<
Input$TargetCurrencyInput> ? currencies, - List<
String> ? languages, - List<
String> ? phone, - String? website,
- List<
Input$SocialValueInput> ? chatContact, - List<
Input$SocialValueInput> ? socialMedia, - double? averageCustomers,
- String? turnover,
- List<
String> ? posCategory, - String? company,
- List<
String> ? services, - List<
String> ? paymentMethods, - List<
Input$POSLoyaltyInput> ? loyaltyPrograms,
Implementation
factory Input$PointOfSaleInput({
String? name,
String? title,
String? subtitle,
String? description,
List<String>? tags,
String? brandColor,
String? reference,
bool? published,
bool? aggregator,
Input$PictureInput? picture,
List<Input$PictureInput>? outsidePictures,
List<Input$PictureInput>? insidePictures,
Input$OpeningHoursInput? openingHours,
List<Input$SpecilOfferInput>? specialOffers,
List<Input$FullAddressInput>? locations,
List<String>? email,
List<String>? contactEmails,
List<Input$TargetCurrencyInput>? currencies,
List<String>? languages,
List<String>? phone,
String? website,
List<Input$SocialValueInput>? chatContact,
List<Input$SocialValueInput>? socialMedia,
double? averageCustomers,
String? turnover,
List<String>? posCategory,
String? company,
List<String>? services,
List<String>? paymentMethods,
List<Input$POSLoyaltyInput>? loyaltyPrograms,
}) =>
Input$PointOfSaleInput._({
if (name != null) r'name': name,
if (title != null) r'title': title,
if (subtitle != null) r'subtitle': subtitle,
if (description != null) r'description': description,
if (tags != null) r'tags': tags,
if (brandColor != null) r'brandColor': brandColor,
if (reference != null) r'reference': reference,
if (published != null) r'published': published,
if (aggregator != null) r'aggregator': aggregator,
if (picture != null) r'picture': picture,
if (outsidePictures != null) r'outsidePictures': outsidePictures,
if (insidePictures != null) r'insidePictures': insidePictures,
if (openingHours != null) r'openingHours': openingHours,
if (specialOffers != null) r'specialOffers': specialOffers,
if (locations != null) r'locations': locations,
if (email != null) r'email': email,
if (contactEmails != null) r'contactEmails': contactEmails,
if (currencies != null) r'currencies': currencies,
if (languages != null) r'languages': languages,
if (phone != null) r'phone': phone,
if (website != null) r'website': website,
if (chatContact != null) r'chatContact': chatContact,
if (socialMedia != null) r'socialMedia': socialMedia,
if (averageCustomers != null) r'averageCustomers': averageCustomers,
if (turnover != null) r'turnover': turnover,
if (posCategory != null) r'posCategory': posCategory,
if (company != null) r'company': company,
if (services != null) r'services': services,
if (paymentMethods != null) r'paymentMethods': paymentMethods,
if (loyaltyPrograms != null) r'loyaltyPrograms': loyaltyPrograms,
});