Faker C++
Loading...
Searching...
No Matches
commerce.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <string_view>
5
6#include "faker-cxx/export.h"
7
9{
19FAKER_CXX_EXPORT std::string_view department();
20
31FAKER_CXX_EXPORT std::string sku(unsigned length = 4);
32
42FAKER_CXX_EXPORT std::string_view productAdjective();
43
53FAKER_CXX_EXPORT std::string_view productMaterial();
54
64FAKER_CXX_EXPORT std::string_view productName();
65
75FAKER_CXX_EXPORT std::string productFullName();
76
86FAKER_CXX_EXPORT std::string EAN13();
87
97FAKER_CXX_EXPORT std::string EAN8();
98
108FAKER_CXX_EXPORT std::string ISBN13();
109
119FAKER_CXX_EXPORT std::string ISBN10();
120
130FAKER_CXX_EXPORT std::string_view paymentType();
131
141FAKER_CXX_EXPORT std::string_view paymentProvider();
142
152FAKER_CXX_EXPORT std::string_view productDescription();
153
163FAKER_CXX_EXPORT std::string_view productCategory();
164
174FAKER_CXX_EXPORT std::string_view productReview();
175
185FAKER_CXX_EXPORT std::string_view discountType();
186
196FAKER_CXX_EXPORT std::string_view orderStatus();
197
207FAKER_CXX_EXPORT std::string_view shippingCarrier();
208}
Definition commerce.h:9
FAKER_CXX_EXPORT std::string_view productAdjective()
Returns a random product adjective.
FAKER_CXX_EXPORT std::string sku(unsigned length=4)
Generates a random sku by default only with digits.
FAKER_CXX_EXPORT std::string_view productDescription()
Returns a random product description.
FAKER_CXX_EXPORT std::string_view orderStatus()
Returns a random order status.
FAKER_CXX_EXPORT std::string_view productReview()
Returns a random product review.
FAKER_CXX_EXPORT std::string_view discountType()
Returns a random discount type.
FAKER_CXX_EXPORT std::string_view paymentType()
Returns a random payment type.
FAKER_CXX_EXPORT std::string_view shippingCarrier()
Returns a random shipping carrier.
FAKER_CXX_EXPORT std::string_view productMaterial()
Returns a random product material.
FAKER_CXX_EXPORT std::string_view productCategory()
Returns a random product category.
FAKER_CXX_EXPORT std::string EAN8()
Returns a random valid ean8 code.
FAKER_CXX_EXPORT std::string_view department()
Returns a random commerce department.
FAKER_CXX_EXPORT std::string productFullName()
Returns a random product full name.
FAKER_CXX_EXPORT std::string_view paymentProvider()
Returns a random payment provider.
FAKER_CXX_EXPORT std::string ISBN10()
Returns a random valid ISBN10 code.
FAKER_CXX_EXPORT std::string_view productName()
Returns a random product short name.
FAKER_CXX_EXPORT std::string ISBN13()
Returns a random valid isbn13 code.
FAKER_CXX_EXPORT std::string EAN13()
Returns a random valid ean13 code.