Class CallbackRequest
The request body contains a JSON object with the user ID of a bot that should receive webhook events and an array of webhook event objects.
public class CallbackRequest : IAdditionalDataHolder, IParsable
- Inheritance
-
CallbackRequest
- Implements
-
IAdditionalDataHolderIParsable
- Inherited Members
Constructors
CallbackRequest()
Instantiates a new CallbackRequest and sets the default values.
public CallbackRequest()
Properties
AdditionalData
Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Destination
User ID of a bot that should receive webhook events.The user ID value is a string that matches the regular expression, U[0-9a-f]{32}.
public string? Destination { get; set; }
Property Value
Events
Array of webhook event objects.The LINE Platform may send an empty array that doesn't include a webhook event object to confirm communication.
public List<Event>? Events { get; set; }
Property Value
Methods
CreateFromDiscriminatorValue(IParseNode)
Creates a new instance of the appropriate class based on discriminator value
public static CallbackRequest CreateFromDiscriminatorValue(IParseNode parseNode)
Parameters
parseNodeIParseNodeThe parse node to use to read the discriminator value and create the object
Returns
GetFieldDeserializers()
The deserialization information for the current model
public virtual IDictionary<string, Action<IParseNode>> GetFieldDeserializers()
Returns
- IDictionary<string, Action<IParseNode>>
A IDictionary<string, Action<IParseNode>>
Serialize(ISerializationWriter)
Serializes information the current object
public virtual void Serialize(ISerializationWriter writer)
Parameters
writerISerializationWriterSerialization writer to use to serialize this model