Created
June 20, 2018 14:59
-
-
Save madsunrise/ba1504c881711b8fd8978676e70878d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.evotor.kkm_client; | |
import ru.evotor.devices.commons.kkm_state.KKMStatus; | |
import ru.evotor.devices.commons.kkm_state.ZReportOptions; | |
import ru.evotor.framework.receipt.PrintableReceipt; | |
import ru.evotor.kkm_client.IKKMCallback; | |
interface IKKMRemoteService { | |
void attachCallback(String operationUuid, in IKKMCallback callback); | |
ParcelUuid getCurrentStatus(in IKKMCallback callback); | |
ParcelUuid printString(in String text, in IKKMCallback callback); | |
ParcelUuid printSellReceipt(in PrintableReceipt receipt, in IKKMCallback callback); | |
ParcelUuid setZReportOptions(in ZReportOptions options); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment