Reference for RimuHosting's Data Structures (as used in our REST-ful APIs)

Name: OrderBeingBilled

A brief bit of detail about an order (used on the BillingMethodData object).

XML Example:
<OrderBeingBilled>
  <about_billing>AboutBillingData</about_billing>
  <domain_name>xsd:string</domain_name>
  <order_oid>xsd:long</order_oid>
  <slug>xsd:string</slug>
</OrderBeingBilled>
JSON Example:
{"OrderBeingBilled":
 {
   "about_billing": AboutBillingData,
   "domain_name": String,
   "order_oid": Number,
   "slug": String,
 }
}

Elements
NameTypeRequiredNillableDefault ValueDescription
about_billingAboutBillingDatafalsefalseA bit of information about the server's billing, like its monthly fee and dates like the order date and any prepay or cancellation date.
domain_namexsd:stringfalsefalseThe server's domain name/label.
order_oidxsd:longfalsefalseThe unique id of the order.
slugxsd:stringfalsefalseThe bit to add after /orders/ to get the URI to this server.