<?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="BillQueueService" 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="BillQueue" EntityType="BillQueueService.BillQueue"/>
        <ActionImport Name="createBillQueue" Action="BillQueueService.createBillQueue"/>
        <ActionImport Name="updateBillQueue" Action="BillQueueService.updateBillQueue"/>
        <ActionImport Name="deleteBillQueue" Action="BillQueueService.deleteBillQueue"/>
        <ActionImport Name="getBillQueue" Action="BillQueueService.getBillQueue" EntitySet="BillQueue"/>
        <ActionImport Name="getAllBillQueues" Action="BillQueueService.getAllBillQueues" EntitySet="BillQueue"/>
      </EntityContainer>
      <EntityType Name="BillQueue">
        <Key>
          <PropertyRef Name="ID"/>
        </Key>
        <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
        <Property Name="invoiceNumber" Type="Edm.String" MaxLength="100"/>
        <Property Name="candidateID" Type="Edm.Guid"/>
        <Property Name="candidateName" Type="Edm.String" MaxLength="500"/>
        <Property Name="applicationID" Type="Edm.String" MaxLength="100"/>
        <Property Name="country" Type="Edm.String" MaxLength="300"/>
        <Property Name="stage" Type="Edm.String" MaxLength="300"/>
        <Property Name="amount" Type="Edm.Decimal" Precision="15" Scale="2"/>
        <Property Name="currency" Type="Edm.String" MaxLength="3"/>
        <Property Name="status" Type="Edm.String" MaxLength="100"/>
        <Property Name="dueDate" Type="Edm.Date"/>
        <Property Name="paymentReferenceNumber" Type="Edm.String" MaxLength="200"/>
        <Property Name="paidOn" Type="Edm.Date"/>
        <Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <Property Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
      </EntityType>
      <ComplexType Name="return_BillQueueService_createBillQueue">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <ComplexType Name="return_BillQueueService_updateBillQueue">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <ComplexType Name="return_BillQueueService_deleteBillQueue">
        <Property Name="success" Type="Edm.Boolean"/>
        <Property Name="message" Type="Edm.String"/>
      </ComplexType>
      <Action Name="createBillQueue" IsBound="false">
        <Parameter Name="invoiceNumber" Type="Edm.String"/>
        <Parameter Name="candidateID" Type="Edm.Guid"/>
        <Parameter Name="candidateName" Type="Edm.String"/>
        <Parameter Name="applicationID" Type="Edm.String"/>
        <Parameter Name="country" Type="Edm.String"/>
        <Parameter Name="stage" Type="Edm.String"/>
        <Parameter Name="amount" Type="Edm.Decimal" Scale="variable"/>
        <Parameter Name="currency" Type="Edm.String"/>
        <Parameter Name="status" Type="Edm.String"/>
        <Parameter Name="dueDate" Type="Edm.Date"/>
        <Parameter Name="paymentReferenceNumber" Type="Edm.String"/>
        <Parameter Name="paidOn" Type="Edm.Date"/>
        <ReturnType Type="BillQueueService.return_BillQueueService_createBillQueue"/>
      </Action>
      <Action Name="updateBillQueue" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <Parameter Name="invoiceNumber" Type="Edm.String"/>
        <Parameter Name="candidateID" Type="Edm.Guid"/>
        <Parameter Name="candidateName" Type="Edm.String"/>
        <Parameter Name="applicationID" Type="Edm.String"/>
        <Parameter Name="country" Type="Edm.String"/>
        <Parameter Name="stage" Type="Edm.String"/>
        <Parameter Name="amount" Type="Edm.Decimal" Scale="variable"/>
        <Parameter Name="currency" Type="Edm.String"/>
        <Parameter Name="status" Type="Edm.String"/>
        <Parameter Name="dueDate" Type="Edm.Date"/>
        <Parameter Name="paymentReferenceNumber" Type="Edm.String"/>
        <Parameter Name="paidOn" Type="Edm.Date"/>
        <Parameter Name="updatedAt" Type="Edm.DateTimeOffset" Precision="7"/>
        <ReturnType Type="BillQueueService.return_BillQueueService_updateBillQueue"/>
      </Action>
      <Action Name="deleteBillQueue" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <ReturnType Type="BillQueueService.return_BillQueueService_deleteBillQueue"/>
      </Action>
      <Action Name="getBillQueue" IsBound="false">
        <Parameter Name="ID" Type="Edm.String"/>
        <ReturnType Type="BillQueueService.BillQueue"/>
      </Action>
      <Action Name="getAllBillQueues" IsBound="false">
        <ReturnType Type="Collection(BillQueueService.BillQueue)"/>
      </Action>
      <Annotations Target="BillQueueService.BillQueue/ID">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
      <Annotations Target="BillQueueService.BillQueue/createdAt">
        <Annotation Term="Core.ComputedDefaultValue" Bool="true"/>
      </Annotations>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>