/** * This attribute captures the name or identifier of the company responsible for operating the Rail product. It represents the specific operating entity, such as Amtrak, British Railways, or a bus company. */ export declare class RailSegmentsOperatingCompany { /** * The name used by the transportation carrier for marketing purposes in the travel segment. Example: ARX, AMTRAC, ARRIVA */ marketingName?: string; constructor(railSegmentsOperatingCompany: RailSegmentsOperatingCompanyProperties); } export interface RailSegmentsOperatingCompanyProperties { marketingName?: string; }