Advertisement
Guest User

Untitled

a guest
Nov 26th, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 6.58 KB | None | 0 0
  1. Public Class AssetContract
  2.     Public Property address As String
  3.     Public Property asset_contract_type As String
  4.     Public Property created_date As DateTime
  5.     Public Property name As String
  6.     Public Property nft_version As String
  7.     Public Property opensea_version As String
  8.     Public Property owner As Integer?
  9.     Public Property schema_name As String
  10.     Public Property symbol As String
  11.     Public Property total_supply As String
  12.     Public Property description As String
  13.     Public Property external_link As String
  14.     Public Property image_url As String
  15.     Public Property default_to_fiat As Boolean
  16.     Public Property dev_buyer_fee_basis_points As Integer
  17.     Public Property dev_seller_fee_basis_points As Integer
  18.     Public Property only_proxied_transfers As Boolean
  19.     Public Property opensea_buyer_fee_basis_points As Integer
  20.     Public Property opensea_seller_fee_basis_points As Integer
  21.     Public Property buyer_fee_basis_points As Integer
  22.     Public Property seller_fee_basis_points As Integer
  23.     Public Property payout_address As String
  24. End Class
  25.  
  26. Public Class DisplayData
  27.     Public Property card_display_style As String
  28. End Class
  29.  
  30. Public Class Collection
  31.     Public Property banner_image_url As String
  32.     Public Property chat_url As Object
  33.     Public Property created_date As DateTime
  34.     Public Property default_to_fiat As Boolean
  35.     Public Property description As String
  36.     Public Property dev_buyer_fee_basis_points As String
  37.     Public Property dev_seller_fee_basis_points As String
  38.     Public Property discord_url As String
  39.     Public Property display_data As DisplayData
  40.     Public Property external_url As String
  41.     Public Property featured As Boolean
  42.     Public Property featured_image_url As String
  43.     Public Property hidden As Boolean
  44.     Public Property safelist_request_status As String
  45.     Public Property image_url As String
  46.     Public Property is_subject_to_whitelist As Boolean
  47.     Public Property large_image_url As String
  48.     Public Property medium_username As String
  49.     Public Property name As String
  50.     Public Property only_proxied_transfers As Boolean
  51.     Public Property opensea_buyer_fee_basis_points As String
  52.     Public Property opensea_seller_fee_basis_points As String
  53.     Public Property payout_address As String
  54.     Public Property require_email As Boolean
  55.     Public Property short_description As Object
  56.     Public Property slug As String
  57.     Public Property telegram_url As String
  58.     Public Property twitter_username As String
  59.     Public Property instagram_username As String
  60.     Public Property wiki_url As Object
  61. End Class
  62.  
  63. Public Class User
  64.     Public Property username As String
  65. End Class
  66.  
  67. Public Class Owner
  68.     Public Property user As User
  69.     Public Property profile_img_url As String
  70.     Public Property address As String
  71.     Public Property config As String
  72. End Class
  73.  
  74. Public Class Asset
  75.     Public Property id As Integer
  76.     Public Property token_id As String
  77.     Public Property num_sales As Integer
  78.     Public Property background_color As Object
  79.     Public Property image_url As String
  80.     Public Property image_preview_url As String
  81.     Public Property image_thumbnail_url As String
  82.     Public Property image_original_url As String
  83.     Public Property animation_url As String
  84.     Public Property animation_original_url As String
  85.     Public Property name As String
  86.     Public Property description As String
  87.     Public Property external_link As String
  88.     Public Property asset_contract As AssetContract
  89.     Public Property permalink As String
  90.     Public Property collection As Collection
  91.     Public Property decimals As Integer?
  92.     Public Property token_metadata As String
  93.     Public Property owner As Owner
  94. End Class
  95.  
  96. Public Class PaymentToken
  97.     Public Property id As Integer
  98.     Public Property symbol As String
  99.     Public Property address As String
  100.     Public Property image_url As String
  101.     Public Property name As String
  102.     Public Property decimals As Integer
  103.     Public Property eth_price As String
  104.     Public Property usd_price As String
  105. End Class
  106.  
  107. Public Class Transaction
  108.     Public Property block_hash As String
  109.     Public Property block_number As String
  110.     Public Property from_account As Object
  111.     Public Property id As Integer
  112.     Public Property timestamp As Object
  113.     Public Property to_account As Object
  114.     Public Property transaction_hash As String
  115.     Public Property transaction_index As String
  116. End Class
  117.  
  118. Public Class DevFeePaymentEvent
  119.     Public Property asset As Object
  120.     Public Property asset_bundle As Object
  121.     Public Property event_type As String
  122.     Public Property event_timestamp As DateTime
  123.     Public Property auction_type As Object
  124.     Public Property total_price As Object
  125.     Public Property payment_token As PaymentToken
  126.     Public Property transaction As Transaction
  127.     Public Property created_date As DateTime
  128.     Public Property quantity As Object
  129. End Class
  130.  
  131. Public Class Seller
  132.     Public Property user As User
  133.     Public Property profile_img_url As String
  134.     Public Property address As String
  135.     Public Property config As String
  136. End Class
  137.  
  138. Public Class WinnerAccount
  139.     Public Property user As User
  140.     Public Property profile_img_url As String
  141.     Public Property address As String
  142.     Public Property config As String
  143. End Class
  144.  
  145. Public Class AssetEvent
  146.     Public Property approved_account As Object
  147.     Public Property asset As Asset
  148.     Public Property asset_bundle As Object
  149.     Public Property auction_type As Object
  150.     Public Property bid_amount As Object
  151.     Public Property collection_slug As String
  152.     Public Property contract_address As String
  153.     Public Property created_date As DateTime
  154.     Public Property custom_event_name As Object
  155.     Public Property dev_fee_payment_event As DevFeePaymentEvent
  156.     Public Property duration As Object
  157.     Public Property ending_price As Object
  158.     Public Property event_type As String
  159.     Public Property from_account As Object
  160.     Public Property id As Integer
  161.     Public Property is_private As String
  162.     Public Property owner_account As Object
  163.     Public Property payment_token As PaymentToken
  164.     Public Property quantity As String
  165.     Public Property seller As Seller
  166.     Public Property starting_price As Object
  167.     Public Property to_account As Object
  168.     Public Property total_price As String
  169.     Public Property transaction As Transaction
  170.     Public Property winner_account As WinnerAccount
  171. End Class
  172.  
  173. Public Class Assets
  174.     Public Property asset_events As AssetEvent()
  175. End Class
  176.  
  177. Public Class Single_Asset
  178.     Public Property asset As Asset
  179. End Class
  180.  
  181.  
  182.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement