account.reportPeer
Layer 225
Constructor ID: 0xc5ba3d86
Returns: Bool
Parameters
| Name | Type | Description |
|---|---|---|
peer | InputPeer | |
reason | ReportReason | |
message | string |
Example
go
result, err := client.Raw(&tg.ReportPeerRequest{
peer: nil, // InputPeer
reason: nil, // ReportReason
message: "",
})
if err != nil {
panic(err)
}
print(result)