Moved Payment objects
This commit is contained in:
parent
0662c64ed6
commit
02dedd3e03
13 changed files with 18 additions and 10 deletions
|
@ -3,6 +3,7 @@
|
|||
namespace TgBotLib\Objects;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Payments\Invoice;
|
||||
|
||||
class ExternalReplyInfo implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
use TgBotLib\Enums\Types\InputMessageContentType;
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Inline\InputMessageContent;
|
||||
use TgBotLib\Objects\LabeledPrice;
|
||||
use TgBotLib\Objects\Payments\LabeledPrice;
|
||||
|
||||
class InputInvoiceMessageContent extends InputMessageContent implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
namespace TgBotLib\Objects;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Payments\Invoice;
|
||||
use TgBotLib\Objects\Payments\RefundedPayment;
|
||||
use TgBotLib\Objects\Payments\SuccessfulPayment;
|
||||
|
||||
class Message extends MaybeInaccessibleMessage implements ObjectTypeInterface
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,9 +1,10 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\User;
|
||||
|
||||
class PreCheckoutQuery implements ObjectTypeInterface
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -1,9 +1,10 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\User;
|
||||
|
||||
class ShippingQuery implements ObjectTypeInterface
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace TgBotLib\Objects;
|
||||
namespace TgBotLib\Objects\Payments;
|
||||
|
||||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
|
|
@ -6,6 +6,8 @@
|
|||
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||
use TgBotLib\Objects\Inline\ChosenInlineResult;
|
||||
use TgBotLib\Objects\Inline\InlineQuery;
|
||||
use TgBotLib\Objects\Payments\PreCheckoutQuery;
|
||||
use TgBotLib\Objects\Payments\ShippingQuery;
|
||||
|
||||
class Update implements ObjectTypeInterface
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue