<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
  <edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
    <edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1"/>
  </edmx:Reference>
  <edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
    <edmx:Include Alias="Core" Namespace="Org.OData.Core.V1"/>
  </edmx:Reference>
  <edmx:DataServices>
    <Schema Namespace="FeeMatrixService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <Annotation Term="Core.Links">
        <Collection>
          <Record>
            <PropertyValue Property="rel" String="author"/>
            <PropertyValue Property="href" String="https://cap.cloud.sap"/>
          </Record>
        </Collection>
      </Annotation>
      <EntityContainer Name="EntityContainer">
        <EntitySet Name="FeeMatrix" EntityType="FeeMatrixService.FeeMatrix"/>
        <ActionImport Name="createFeeMatrix" Action="FeeMatrixService.createFeeMatrix"/>
        <ActionImport Name="updateFeeMatrix" Action="FeeMatrixService.updateFeeMatrix"/>
        <ActionImport Name="deleteFeeMatrix" Action="FeeMatrixService.deleteFeeMatrix"/>
        <ActionImport Name="getFeeMatrix" Action="FeeMatrixService.getFeeMatrix" EntitySet="FeeMatrix"/>
        <ActionImport Name="getAllFeeMatrixs" Action="FeeMatrixService.getAllFeeMatrixs" EntitySet="FeeMatrix"/>
      </EntityContainer>
      <EntityType Name="FeeMatrix">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="country" Type="Edm.String" MaxLength="300"/>
        <Property Name="category" Type="Edm.String" MaxLength="300"/>
        <Property Name="stage" Type="Edm.String" MaxLength="300"/>
        <Property Name="payer" Type="Edm.String" MaxLength="300"/>
        <Property Name="type" Type="Edm.String" MaxLength="300"/>
        <Property Name="paymentMode" Type="Edm.String" MaxLength="200"/>
        <Property Name="reimbursement" Type="Edm.Boolean" DefaultValue="true"/>
        <Property Name="amount" Type="Edm.Decimal" Precision="15" Scale="2"/>
        <Property Name="currency" Type="Edm.String" MaxLength="3"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <ComplexType Name="return_FeeMatrixService_createFeeMatrix">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <ComplexType Name="return_FeeMatrixService_updateFeeMatrix">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <ComplexType Name="return_FeeMatrixService_deleteFeeMatrix">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <Action Name="createFeeMatrix" IsBound="false">
        <Parameter Name="country" Type="Edm.String"/>
        <Parameter Name="category" Type="Edm.String"/>
        <Parameter Name="stage" Type="Edm.String"/>
        <Parameter Name="payer" Type="Edm.String"/>
        <Parameter Name="type" Type="Edm.String"/>
        <Parameter Name="paymentMode" Type="Edm.String"/>
        <Parameter Name="reimbursement" Type="Edm.Boolean"/>
        <Parameter Name="amount" Type="Edm.Decimal" Scale="variable"/>
        <Parameter Name="currency" Type="Edm.String"/>
        <ReturnType Type="FeeMatrixService.return_FeeMatrixService_createFeeMatrix"/>
      </Action>
      <Action Name="updateFeeMatrix" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <Parameter Name="country" Type="Edm.String"/>
        <Parameter Name="category" Type="Edm.String"/>
        <Parameter Name="stage" Type="Edm.String"/>
        <Parameter Name="payer" Type="Edm.String"/>
        <Parameter Name="type" Type="Edm.String"/>
        <Parameter Name="paymentMode" Type="Edm.String"/>
        <Parameter Name="reimbursement" Type="Edm.Boolean"/>
        <Parameter Name="amount" Type="Edm.Decimal" Scale="variable"/>
        <Parameter Name="currency" Type="Edm.String"/>
        <Parameter Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <ReturnType Type="FeeMatrixService.return_FeeMatrixService_updateFeeMatrix"/>
      </Action>
      <Action Name="deleteFeeMatrix" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <ReturnType Type="FeeMatrixService.return_FeeMatrixService_deleteFeeMatrix"/>
      </Action>
      <Action Name="getFeeMatrix" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <ReturnType Type="FeeMatrixService.FeeMatrix"/>
      </Action>
      <Action Name="getAllFeeMatrixs" IsBound="false">
        <ReturnType Type="Collection(FeeMatrixService.FeeMatrix)"/>
      </Action>
      <Annotations Target="FeeMatrixService.FeeMatrix/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="FeeMatrixService.FeeMatrix/createdAt">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>