Billing

gcp/Item/Billing
include('gcp/Item/Billing')
Illustration Billing BillingCard BillingGroup
illustration for Illustration illustration for Billing illustration for BillingCard illustration for BillingGroup

Sprites

The item provides the following sriptes:

  • <$BillingXs>
  • <$BillingSm>
  • <$BillingMd>
  • <$BillingLg>

Billing

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element Billing
include('gcp/Item/Billing')

' renders the element
Billing('Billing', 'Billing', 'an optional tech label', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element Billing
include('gcp/Item/Billing')

' renders the element
Billing('Billing', 'Billing', 'an optional tech label', 'an optional description')
@enduml

BillingCard

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element BillingCard
include('gcp/Item/Billing')

' renders the element
BillingCard('BillingCard', 'Billing Card', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element BillingCard
include('gcp/Item/Billing')

' renders the element
BillingCard('BillingCard', 'Billing Card', 'an optional description')
@enduml

BillingGroup

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element BillingGroup
include('gcp/Item/Billing')

' renders the element
BillingGroup('BillingGroup', 'Billing Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('gcp/bootstrap')

' loads the Item which embeds the element BillingGroup
include('gcp/Item/Billing')

' renders the element
BillingGroup('BillingGroup', 'Billing Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml