Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BonusPayment

import type { BonusPayment } from "https://aws-api.deno.dev/v0.4/services/mturk.ts?docs=full";

An object representing a Bonus payment paid to a Worker.

interface BonusPayment {
AssignmentId?: string | null;
BonusAmount?: string | null;
GrantTime?: Date | number | null;
Reason?: string | null;
WorkerId?: string | null;
}

§Properties

§
AssignmentId?: string | null
[src]

The ID of the assignment associated with this bonus payment.

§
BonusAmount?: string | null
[src]
§
GrantTime?: Date | number | null
[src]

The date and time of when the bonus was granted.

§
Reason?: string | null
[src]

The Reason text given when the bonus was granted, if any.

§
WorkerId?: string | null
[src]

The ID of the Worker to whom the bonus was paid.