Input$CompanyUpdateInput constructor
Input$CompanyUpdateInput({
- String? name,
- String? description,
- List<
String> ? tags, - Input$MediaInput? media,
- Input$FullAddressInput? address,
- Input$CompanyLegalInput? legal,
- List<
String> ? banks, - Input$CompanyContactDetailsInput? contact,
- bool? logistic,
- String? externalId,
- Input$CompanyCustomerInput? customer,
- Input$CompanySupplierInput? supplier,
Implementation
factory Input$CompanyUpdateInput({
String? name,
String? description,
List<String>? tags,
Input$MediaInput? media,
Input$FullAddressInput? address,
Input$CompanyLegalInput? legal,
List<String>? banks,
Input$CompanyContactDetailsInput? contact,
bool? logistic,
String? externalId,
Input$CompanyCustomerInput? customer,
Input$CompanySupplierInput? supplier,
}) =>
Input$CompanyUpdateInput._({
if (name != null) r'name': name,
if (description != null) r'description': description,
if (tags != null) r'tags': tags,
if (media != null) r'media': media,
if (address != null) r'address': address,
if (legal != null) r'legal': legal,
if (banks != null) r'banks': banks,
if (contact != null) r'contact': contact,
if (logistic != null) r'logistic': logistic,
if (externalId != null) r'externalId': externalId,
if (customer != null) r'customer': customer,
if (supplier != null) r'supplier': supplier,
});