Interface StandalonePriceTierAddedMessage

All Superinterfaces:
BaseResource, DomainResource<Message>, Identifiable<Message>, Message, Versioned<Message>

public interface StandalonePriceTierAddedMessage extends Message

Generated after a successful Add Price Tier update action


Example to create an instance using the builder pattern

     StandalonePriceTierAddedMessage standalonePriceTierAddedMessage = StandalonePriceTierAddedMessage.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .sequenceNumber(0.3)
             .resource(resourceBuilder -> resourceBuilder)
             .resourceVersion(0.3)
             .tier(tierBuilder -> tierBuilder)
             .build()
 
  • Field Details

    • STANDALONE_PRICE_TIER_ADDED

      static final String STANDALONE_PRICE_TIER_ADDED
      discriminator value for StandalonePriceTierAddedMessage
      See Also:
  • Method Details