""" Sample transaction types structures =================================== Used to create hard-coded responses to /transaction_types to aid in early development/testing """ transaction_type1 = { 'short_name': 'AEA', 'long_name': 'Ad-Enabled Audio Streams'} transaction_type2 = { 'short_name': 'AEV', 'long_name': 'Ad-Enabled Video Streams'} transaction_types = [transaction_type1, transaction_type2]