Raw.bots.UpdateStarRefProgram

Raw.bots.UpdateStarRefProgram

Create, edit or delete the affiliate program of a bot we own

bots.updateStarRefProgram#778b5ab3 flags:# bot:InputUser commission_permille:int duration_months:flags.0?int = StarRefProgram;
export namespace Raw {
  export namespace bots {
    export class UpdateStarRefProgram {
      constructor(params: {
        bot: Raw.TypeInputUser;
        commissionPermille: number;
        durationMonths?: number;
      }) {}
    }
  }
}

This is a function constructor, you can use it as method when call invoke

Layer: 198
Constructor ID: 0x778b5ab3

Property

  • bot : Raw.TypeInputUser

    The bot

  • commissionPermille : number

    The permille commission rate: it indicates the share of telegram stars received by affiliates for every transaction made by users they referred inside of the bot. the minimum and maximum values for this parameter are contained in the starrefMinCommissionPermille and starrefMaxCommissionPermille client configuration parameters. can be 0 to terminate the affiliate program. both the duration and the commission may only be raised after creation of the program: to lower them, the program must first be terminated and a new one created.

  • durationMonths : number or undefined

    Indicates the duration of the affiliate program; if not set, there is no expiration date.

Results

Raw.TypeStarRefProgram