commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
QuoteCreatedMessagePayloadBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
18 use stdClass;
19 
24 {
29  private $quote;
30 
37  public function getQuote()
38  {
39  return $this->quote instanceof QuoteBuilder ? $this->quote->build() : $this->quote;
40  }
41 
46  public function withQuote(?Quote $quote)
47  {
48  $this->quote = $quote;
49 
50  return $this;
51  }
52 
57  public function withQuoteBuilder(?QuoteBuilder $quote)
58  {
59  $this->quote = $quote;
60 
61  return $this;
62  }
63 
64  public function build(): QuoteCreatedMessagePayload
65  {
67  $this->quote instanceof QuoteBuilder ? $this->quote->build() : $this->quote
68  );
69  }
70 
71  public static function of(): QuoteCreatedMessagePayloadBuilder
72  {
73  return new self();
74  }
75 }