UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

14 lines (13 loc) 338 B
/** * Interface of an ISpace's 'billing_address' property. * * @interface ISpaceBillingAddress */ export interface ISpaceBillingAddress { readonly name: string readonly address_zip: string readonly address_city: string readonly address_line1: string readonly address_country: string readonly address_iso_country: string }