"""Constants for microservices interaction.""" SERVICE_CALL_METHOD_HEAD = 'HEAD' APPLICATION_NAME = 'ows-sales-goals' OWS_PRODUCT_SERVICE_NAME = 'ows-product' OWS_PROJECT_SERVICE_NAME = 'ows-project-manager' OWS_PRODUCT_DIGITAL_SERVICE_NAME = 'ows-product-digital' OWS_TERRITORIES_NAME = 'ows-territories' CODE_FORBIDDEN_PRODUCT = 'forbidden_product' CODE_NOT_FOUND_PRODUCT = 'not_found_product' MESSAGE_FORBIDDEN_PRODUCT = 'Product {product} isn\'t owned by {account}' MESSAGE_NOT_FOUND_PRODUCT = 'Product {product} doesn\'t exist' OWNERSHIP_VALIDATION_ERROR = 'ownership_validation_error'