Faker C++
Loading...
Searching...
No Matches
Commerce.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4#include "faker-cxx/Export.h"
5
7{
17FAKER_CXX_EXPORT std::string_view department();
18
29FAKER_CXX_EXPORT std::string sku(unsigned length = 4);
30
40FAKER_CXX_EXPORT std::string_view productAdjective();
41
51FAKER_CXX_EXPORT std::string_view productMaterial();
52
62FAKER_CXX_EXPORT std::string_view productName();
63
73FAKER_CXX_EXPORT std::string productFullName();
74
84FAKER_CXX_EXPORT std::string EAN13();
85
95FAKER_CXX_EXPORT std::string EAN8();
96
106FAKER_CXX_EXPORT std::string ISBN13();
107
117FAKER_CXX_EXPORT std::string ISBN10();
118
128FAKER_CXX_EXPORT std::string_view paymentType();
129
139FAKER_CXX_EXPORT std::string_view paymentProvider();
140
150FAKER_CXX_EXPORT std::string_view productDescription();
151
161FAKER_CXX_EXPORT std::string_view productCategory();
162
172FAKER_CXX_EXPORT std::string_view productReview();
173
183FAKER_CXX_EXPORT std::string_view discountType();
184
194FAKER_CXX_EXPORT std::string_view orderStatus();
195
205FAKER_CXX_EXPORT std::string_view shippingCarrier();
206}
Definition Commerce.h:7
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.