File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11440,12 +11440,12 @@ class AcceptedGiftTypes(JsonDeserializable, JsonSerializable):
1144011440 :return: Instance of the class
1144111441 :rtype: :class:`AcceptedGiftTypes`
1144211442 """
11443- def __init__(self, unlimited_gifts: Optional[ bool] , limited_gifts: Optional[ bool] ,
11444- unique_gifts: Optional[ bool] , premium_subscription: Optional[ bool] , **kwargs):
11445- self.unlimited_gifts: Optional[ bool] = unlimited_gifts
11446- self.limited_gifts: Optional[ bool] = limited_gifts
11447- self.unique_gifts: Optional[ bool] = unique_gifts
11448- self.premium_subscription: Optional[ bool] = premium_subscription
11443+ def __init__(self, unlimited_gifts: bool, limited_gifts: bool,
11444+ unique_gifts: bool, premium_subscription: bool, **kwargs):
11445+ self.unlimited_gifts: bool = unlimited_gifts
11446+ self.limited_gifts: bool = limited_gifts
11447+ self.unique_gifts: bool = unique_gifts
11448+ self.premium_subscription: bool = premium_subscription
1144911449
1145011450 def to_json(self):
1145111451 return json.dumps(self.to_dict())
You can’t perform that action at this time.
0 commit comments