Package org.drinkless.tdlib
Class TdApi.InputSuggestedPostInfo
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.InputSuggestedPostInfo
- Enclosing class:
- TdApi
Contains information about a post to suggest.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.Price of the suggested post; pass null to suggest a post without payment.int
Point in time (Unix timestamp) when the post is expected to be published; pass 0 if the date isn't restricted. -
Constructor Summary
ConstructorsConstructorDescriptionContains information about a post to suggest.InputSuggestedPostInfo
(TdApi.SuggestedPostPrice price, int sendDate) Contains information about a post to suggest. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
price
Price of the suggested post; pass null to suggest a post without payment. If the current user isn't an administrator of the channel direct messages chat and has no enough funds to pay for the post, then the error "BALANCE_TOO_LOW" will be returned immediately. -
sendDate
public int sendDatePoint in time (Unix timestamp) when the post is expected to be published; pass 0 if the date isn't restricted. If specified, then the date must be getOption("suggested_post_send_delay_min")-getOption("suggested_post_send_delay_max") seconds in the future. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
InputSuggestedPostInfo
public InputSuggestedPostInfo()Contains information about a post to suggest. -
InputSuggestedPostInfo
Contains information about a post to suggest.- Parameters:
price
- Price of the suggested post; pass null to suggest a post without payment. If the current user isn't an administrator of the channel direct messages chat and has no enough funds to pay for the post, then the error "BALANCE_TOO_LOW" will be returned immediately.sendDate
- Point in time (Unix timestamp) when the post is expected to be published; pass 0 if the date isn't restricted. If specified, then the date must be getOption("suggested_post_send_delay_min")-getOption("suggested_post_send_delay_max") seconds in the future.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-