You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Name of the fiscalization provider (e.g., Invopop, Fonoa, Fiskaly)
country_code
str
ISO 3166-1 alpha-2 country code
country_name
str
Human-readable country name
[optional]
Example
fromcloudbeds_fiscal_document.models.fiscalization_provider_infoimportFiscalizationProviderInfo# TODO update the JSON string belowjson="{}"# create an instance of FiscalizationProviderInfo from a JSON stringfiscalization_provider_info_instance=FiscalizationProviderInfo.from_json(json)
# print the JSON string representation of the objectprint(FiscalizationProviderInfo.to_json())
# convert the object into a dictfiscalization_provider_info_dict=fiscalization_provider_info_instance.to_dict()
# create an instance of FiscalizationProviderInfo from a dictfiscalization_provider_info_from_dict=FiscalizationProviderInfo.from_dict(fiscalization_provider_info_dict)