mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
33 lines
605 B
TypeScript
33 lines
605 B
TypeScript
import { Decimal } from 'decimal.js-light'
|
|
import { Field, InputType } from 'type-graphql'
|
|
|
|
@InputType()
|
|
export class SendCoinsArgs {
|
|
@Field(() => String)
|
|
recipientCommunityUuid: string
|
|
|
|
@Field(() => String)
|
|
recipientUserIdentifier: string
|
|
|
|
@Field(() => String)
|
|
creationDate: string
|
|
|
|
@Field(() => Decimal)
|
|
amount: Decimal
|
|
|
|
@Field(() => String)
|
|
memo: string
|
|
|
|
@Field(() => String)
|
|
senderCommunityUuid: string
|
|
|
|
@Field(() => String)
|
|
senderUserUuid: string
|
|
|
|
@Field(() => String)
|
|
senderUserName: string
|
|
|
|
@Field(() => String, { nullable: true })
|
|
senderAlias?: string | null
|
|
}
|