This is an Full Payment Upon Signature Protocol prepared in Turkish Language.
Accord Protocol Template: one-time-payment-tr
This is an Full Payment Upon Signature Protocol prepared in Turkish Language.
Parse
Use the cicero parse
command to load a template from a directory on disk and then use it to parse input text, echoing the result of parsing. If the input text is valid the parsing result will be a JSON serialized instance of the Template Mode:
Sample template.tem:
1.1 Banka [{seller}]
1.2 Müşteri [{buyer}]
7. Upon the signing of this Agreement, [{buyer}] shall pay the total purchase price to [{seller}] in the amount of [{totalPurchasePrice}].
Sample.txt:
1.1 Banka "ACME Corp."
1.2 Müşteri "Can Doğan"
7. Upon the signing of this Agreement, "Umut" shall pay the total purchase price to "Serkan" in the amount of 1922.99 TRY.
cicero parse --template ./one-time-payment-tr/ --dsl ./one-time-payment-tr/sample.txt
Setting clause data: {"$class": "org.accordtr.onetimepayment.InitRequest"}
Execute
Use the cicero execute
command to load a template from a directory on disk, instantiate a clause based on input text, and then invoke the clause using an incoming JSON payload.
data.json:
{
"$class": "org.accordtr.onetimepayment.InitRequest"
}
cicero execute --template ./one-time-payment-tr/ --dsl ./one-time-payment-tr/sample.txt --data ./one-time-payment-tr/data.json
The results of execution (a JSON serialized object) are displayed. They include:
- Details of the clause executed (name, version, SHA256 hash of clause data)
- The incoming request object
- The output response object
{
"$class": "org.accordproject.cicero.runtime.PaymentObligation",
"amount": {
"$class": "org.accordproject.money.MonetaryAmount",
"doubleValue": 1922.00,
"currencyCode": "TRY"
},
"description": "[object Object] should pay contract amount to [object Object]",
"contract": "resource:org.accordproject.cicero.contract.AccordContract#608991e1-4d47-4f52-8c3d-dab7ad003ac9",
"promisor": "resource:org.accordproject.cicero.contract.AccordParty#Can%20Do%C4%9Fan",
"promisee": "resource:org.accordproject.cicero.contract.AccordParty#ACME%20Corp.",
"eventId": "valid",
"timestamp": "2018-07-31T08:46:18.749Z"
}
]
}
TEK SEFERLİK ÖDEME HİZMETİ SÖZLEŞMESİ
İşbu tek seferlik ödeme hizmeti sözleşmesi ("Sözleşme"), aşağıda adı ve ünvanı belirtilen Taraflar arasında "12/07/2018" tarihinde imzalanmıştır.
1. TARAFLAR
1.1 Banka "ACME Corp."
1.2 Müşteri "Can Doğan"
2. SÖZLEŞMENİN KONUSU
İşbu Sözleşme uyarınca Banka tarafından Müşteri’ye Müşteri’nin yürütmekte olduğu "ithalat ihracat" faaliyetleri kapsamında, Taraflar’ca kararlaştırılan ücret karşılığında,
tek seferlik elektronik fon transferi, havale veya virman işlemi sunulacaktır.
3. ÖDEME EMRİNİN ALINMA ZAMANI
Müşteri tarafından gönderilen ödeme emri Banka’nın iş saatleri içinde ve her halükarda saat 17.00’dan geç olmamak üzere Banka’ya ulaştığı an alınmış sayılır.
Saat 17:00’dan sonra alınan ödeme emri Banka tarafından ertesi iş günü alınmış sayılır. Ödeme emri, Banka tarafından alınmasından itibaren incelenir ve aynı
gün sonuna kadar ödeme emrinin reddi sebeplerinin varlığı halinde Müşteri’ye red gerekçelerini bildirir.
4. ÖDEMENİN GERÇEKLEŞTİRİLMESİ
4.1. Ödeme emrinin Banka’ya verilmesi anından itibaren, Banka işlemi yapmadan önce Müşteri emrinden dönebilir. Ancak Banka işlemi tamamladıktan sonra işlemin geri
alınması mümkün olmayan durumlarda Banka’nın sorumluluğu söz konusu olmaz. Müşterinin Banka’ya vereceği ödeme emrinde hangi döviz cinsi üzerinden işlem yapacağını
belirtmekle yükümlüdür. Döviz cinsi üzerinden yapılacak işlemlerde bankanın cari döviz kurları üzerinden işlem yapılacağını Müşteri kabul ve beyan eder.
4.2. Müşteri, hata veya kusuru sonucu Banka’nın ödeme işlemini gerçekleştirememesi veya hatalı gerçekleştirmesi halinde Banka’nın sorumlu tutulmayacağını kabul ve taahhüt eder.
5. ÖDEME HİZMETİNE İLİŞKİN ÜCRET
Müşteri, işbu Sözleşme kapsamında gerçekleştirilecek ödemeyle ilgili Banka’nın sağlamış olduğu hizmetler için Banka’ya ücret ödemeyi kabul ve taahhüt eder.
6. ÖDEME İŞLEMLERİNE İLİŞKİN BİLGİLENDİRME
Müşteri, Banka’nın kendisini işbu Sözleşme’nin hükümleri hakkında işbu Sözleşme imzalanmadan önce bilgilendirdiğini, Banka’nın internet sitesinde taslak sözleşme örneğini
incelediği ve kendisine sözleşmenin imzalı bir kopyasını verdiğini beyan ve kabul eder.
7. Upon the signing of this Agreement, "Umut" shall pay the total purchase price to "Serkan" in the amount of 1922.99 TRY.
Technical Integration
Please refer to the Cicero documentation
for details and examples of how to integrate a call to a Cicero template into your application.
View the Latest code for this template on on GitHub.
Sample Instance
{
"$class": "org.accordtr.onetimepayment.OneTimePaymentContract",
"contractId": "bdef770b-6c3f-4ed0-9d59-4dab70129acb",
"buyer": {
"$class": "org.accordproject.cicero.contract.AccordParty",
"partyId": "Can Doğan"
},
"seller": {
"$class": "org.accordproject.cicero.contract.AccordParty",
"partyId": "ACME Corp."
},
"totalPurchasePrice": {
"$class": "org.accordproject.money.MonetaryAmount",
"doubleValue": 1922.99,
"currencyCode": "TRY"
}
}
State Types
Type |
Sample JSON |
org.accordtr.onetimepayment.OneTimePaymentState |
{
"$class": "org.accordtr.onetimepayment.OneTimePaymentState",
"status": "UNINITIALIZED",
"stateId": "29e18a61-ee63-11e8-90b2-8532f3de0ed9"
}
|
Request Types
Type |
Sample JSON |
org.accordproject.cicero.runtime.Request |
{
"$class": "org.accordproject.cicero.runtime.Request",
"transactionId": "29e16350-ee63-11e8-90b2-8532f3de0ed9",
"timestamp": "2018-11-22T14:30:30.661Z"
}
|
org.accordtr.onetimepayment.PaymentReceivedRequest |
{
"$class": "org.accordtr.onetimepayment.PaymentReceivedRequest",
"transactionId": "29e16351-ee63-11e8-90b2-8532f3de0ed9",
"timestamp": "2018-11-22T14:30:30.661Z"
}
|
Response Types
Type |
Sample JSON |
org.accordproject.cicero.runtime.Response |
{
"$class": "org.accordproject.cicero.runtime.Response",
"transactionId": "29e16352-ee63-11e8-90b2-8532f3de0ed9",
"timestamp": "2018-11-22T14:30:30.661Z"
}
|
org.accordtr.onetimepayment.PaymentReceivedResponse |
{
"$class": "org.accordtr.onetimepayment.PaymentReceivedResponse",
"transactionId": "29e16353-ee63-11e8-90b2-8532f3de0ed9",
"timestamp": "2018-11-22T14:30:30.661Z"
}
|
Events Types
Type |
Sample JSON |
org.accordproject.base.Event |
{
"abstract": "this is an abstract type"
}
|
org.accordproject.cicero.runtime.PaymentObligation |
{
"$class": "org.accordproject.cicero.runtime.PaymentObligation",
"amount": {
"$class": "org.accordproject.money.MonetaryAmount",
"doubleValue": 252.295,
"currencyCode": "UAH"
},
"description": "Ad sunt labore laborum pariatur.",
"contract": "resource:org.accordtr.onetimepayment.OneTimePaymentContract#6320",
"promisor": "resource:org.accordproject.cicero.contract.AccordParty#4289",
"promisee": "resource:org.accordproject.cicero.contract.AccordParty#2090",
"deadline": "2018-11-22T14:30:30.662Z",
"eventId": "29e18a62-ee63-11e8-90b2-8532f3de0ed9",
"timestamp": "2018-11-22T14:30:30.662Z"
}
|