File: contract_term.py

package info (click to toggle)
chargebee2-python 2.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 644 kB
  • sloc: python: 2,035; makefile: 3; sh: 3
file content (10 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
import json
from chargebee.model import Model
from chargebee import request
from chargebee import APIError

class ContractTerm(Model):

    fields = ["id", "status", "contract_start", "contract_end", "billing_cycle", "action_at_term_end", \
    "total_contract_value", "cancellation_cutoff_period", "created_at", "subscription_id", "remaining_billing_cycles"]