Completed
Push — master ( 72b331...d4b7d2 )
by Steffen
02:14
created

kuon.bitskins.common   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 11
dl 0
loc 19
rs 10
c 0
b 0
f 0
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3
4
5
class Sorting:
6
    CREATED_AT = "created_at"
7
    PRICE = "price"
8
9
10
class SortingDirection:
11
    DESCENDING = "desc"
12
    ASCENDING = "asc"
13
14
15
class Processor:
16
    PAYPAL = "paypal"
17
    BITCOIN = "bitcoin"
18
    BANK_WIRE = "bank wire"
19