1.1.15 • Published 3 years ago

service-dtone v1.1.15

Weekly downloads
30
License
MIT
Repository
github
Last release
3 years ago

Service DTOne

You want to connect your API to Digital Value Services API DTOne? Now, you can use this API service to handle it.

Installation

Install service-dtone

npm install service-dtone

Import (in Typescript) or Require (in Javascript) the package in your project

// typescript
import {
    Config,
    BalancesDTOne,
    ProductDTOne,
    TransactionDTOne,
    ProductType,
    ItransactionCreate,
    ISenderandBeneficiary,
    IdebitandCreditPartyIdentifier
    } from "service-dtone";
// javascript
const {
    Config,
    BalancesDTOne,
    ProductDTOne,
    TransactionDTOne,
    ProductType,
    ItransactionCreate,
    ISenderandBeneficiary,
    IdebitandCreditPartyIdentifier,
} = require("service-dtone");

Quick Start

This is example to implement service-dtone in Javascript:

const {
    Config,
    BalancesDTOne,
    ProductDTOne,
    TransactionDTOne,
    ProductType,
    ItransactionCreate,
    ISenderandBeneficiary,
    IdebitandCreditPartyIdentifier,
} = require("service-dtone");

// config your domain_url, api_key, and api_secret to access DTOne
const config = new Config(
    "domain_url",
    "username or api_key",
    "password or api_secret")

// using endpoint of transaction
const transactionService = new TransactionDTOne(config);

// get all list of transaction
transactionService.getAllListofTransaction();
1.1.15

3 years ago

1.1.14

3 years ago

1.1.12

3 years ago

1.1.13

3 years ago

1.1.11

3 years ago

1.1.10

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.1

3 years ago

1.1.2

3 years ago

1.1.0

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.5

3 years ago