Class: Aws::BillingConductor::Types::CustomLineItemChargeDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-billingconductor/types.rb

Overview

The charge details of a custom line item. It should contain only one of ‘Flat` or `Percentage`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flatTypes::CustomLineItemFlatChargeDetails

A ‘CustomLineItemFlatChargeDetails` that describes the charge details of a flat custom line item.



876
877
878
879
880
881
882
883
# File 'lib/aws-sdk-billingconductor/types.rb', line 876

class CustomLineItemChargeDetails < Struct.new(
  :flat,
  :percentage,
  :type,
  :line_item_filters)
  SENSITIVE = []
  include Aws::Structure
end

#line_item_filtersArray<Types::LineItemFilter>

A representation of the line item filter.

Returns:



876
877
878
879
880
881
882
883
# File 'lib/aws-sdk-billingconductor/types.rb', line 876

class CustomLineItemChargeDetails < Struct.new(
  :flat,
  :percentage,
  :type,
  :line_item_filters)
  SENSITIVE = []
  include Aws::Structure
end

#percentageTypes::CustomLineItemPercentageChargeDetails

A ‘CustomLineItemPercentageChargeDetails` that describes the charge details of a percentage custom line item.



876
877
878
879
880
881
882
883
# File 'lib/aws-sdk-billingconductor/types.rb', line 876

class CustomLineItemChargeDetails < Struct.new(
  :flat,
  :percentage,
  :type,
  :line_item_filters)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of the custom line item that indicates whether the charge is a fee or credit.

Returns:

  • (String)


876
877
878
879
880
881
882
883
# File 'lib/aws-sdk-billingconductor/types.rb', line 876

class CustomLineItemChargeDetails < Struct.new(
  :flat,
  :percentage,
  :type,
  :line_item_filters)
  SENSITIVE = []
  include Aws::Structure
end